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:
Eelco Dolstra 2015-03-27 15:38:45 +01:00
parent 64a4fab42b
commit 0e2257966f
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@
let
v8 = v8_3_16_14;
mysql = (import <nixpkgs> {}).mysql;
mysql = assert false; (import <nixpkgs> {}).mysql;
in

View file

@ -1735,7 +1735,7 @@ let
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 { };