nim: fix evaluation

nimble-unwrapped was breaking ofborg. :(

By the looks of it nimble-unwrapped was removed but the references in
all-packages.nix and in the callPackage invocation were not removed. So
remove them.

Proximal cause: https://github.com/NixOS/nixpkgs/pull/258093

https://gist.github.com/GrahamcOfBorg/7a33204709bf948180670867a9e22e02
This commit is contained in:
Jade Lovelace
2023-10-02 00:59:54 -07:00
committed by Alyssa Ross
parent 6fad6d2d94
commit f902cb4989
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
{ lib, callPackage, buildPackages, stdenv, fetchurl, fetchgit, fetchFromGitHub
, makeWrapper, openssl, pcre, readline, boehmgc, sqlite, Security, nim-unwrapped
, nim-unwrapped-2, nimble-unwrapped, nim }:
, nim-unwrapped-2, nim }:
let
parseCpu = platform:

View File

@@ -16803,7 +16803,7 @@ with pkgs;
inherit (callPackages ../development/compilers/nim
{ inherit (darwin) Security; }
) nim-unwrapped nim-unwrapped-2 nimble-unwrapped nim nim2;
) nim-unwrapped nim-unwrapped-2 nim nim2;
nimPackages = recurseIntoAttrs nim.pkgs;
nim2Packages = recurseIntoAttrs nim2.pkgs;