Disable packages that depend on <nixpkgs>
Nothing in Nixpkgs should use <nixpkgs>, because it can cause Nixpkgs evaluation to depend in part on a different version of Nixpkgs, leading to unpredictable results (including evaluation errors).
This commit is contained in:
parent
64a4fab42b
commit
0e2257966f
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
v8 = v8_3_16_14;
|
v8 = v8_3_16_14;
|
||||||
mysql = (import <nixpkgs> {}).mysql;
|
mysql = assert false; (import <nixpkgs> {}).mysql;
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
|
|
|
@ -1735,7 +1735,7 @@ let
|
||||||
|
|
||||||
kexectools = callPackage ../os-specific/linux/kexectools { };
|
kexectools = callPackage ../os-specific/linux/kexectools { };
|
||||||
|
|
||||||
keybase-node-client = callPackage ../applications/misc/keybase-node-client { };
|
#keybase-node-client = callPackage ../applications/misc/keybase-node-client { };
|
||||||
|
|
||||||
keychain = callPackage ../tools/misc/keychain { };
|
keychain = callPackage ../tools/misc/keychain { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue