summary refs log tree commit diff
path: root/pkgs/development/libraries/nix-plugins
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2017-04-04 22:35:35 -0400
committerShea Levy <shea@shealevy.com>2017-04-04 22:35:35 -0400
commitfe319f8ebdbb14aea31e24e1f946278fad990b5e (patch)
tree87cc4eb6335a64e3d9f1e4a5dee410049441e8c8 /pkgs/development/libraries/nix-plugins
parent2aeafc16c851c499dbc250f0fde72e082875d1c2 (diff)
downloadnixpkgs-fe319f8ebdbb14aea31e24e1f946278fad990b5e.tar
nixpkgs-fe319f8ebdbb14aea31e24e1f946278fad990b5e.tar.gz
nixpkgs-fe319f8ebdbb14aea31e24e1f946278fad990b5e.tar.bz2
nixpkgs-fe319f8ebdbb14aea31e24e1f946278fad990b5e.tar.lz
nixpkgs-fe319f8ebdbb14aea31e24e1f946278fad990b5e.tar.xz
nixpkgs-fe319f8ebdbb14aea31e24e1f946278fad990b5e.tar.zst
nixpkgs-fe319f8ebdbb14aea31e24e1f946278fad990b5e.zip
nix-plugins: 2.0.3 -> 2.0.6.
Fixes incompatibility between build-time and link-time nix version
Diffstat (limited to 'pkgs/development/libraries/nix-plugins')
-rw-r--r--pkgs/development/libraries/nix-plugins/default.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/pkgs/development/libraries/nix-plugins/default.nix b/pkgs/development/libraries/nix-plugins/default.nix
index 6b61dbf7518..c808ca616b1 100644
--- a/pkgs/development/libraries/nix-plugins/default.nix
+++ b/pkgs/development/libraries/nix-plugins/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchFromGitHub, nix }:
-let version = "2.0.3"; in
+{ stdenv, fetchFromGitHub, nix, boehmgc }:
+let version = "2.0.6"; in
 stdenv.mkDerivation {
   name = "nix-plugins-${version}";
 
@@ -7,12 +7,10 @@ stdenv.mkDerivation {
     owner = "shlevy";
     repo = "nix-plugins";
     rev = version;
-    sha256 = "033w4m9ah127sfls7zqzpp2b1wdzsvzzk3bnkv6jyi31bws7hadp";
+    sha256 = "0gbajaxg7awk1fhicsnmvhrmd47wc7i38lz4baxks17sgx76amqr";
   };
 
-  buildInputs = [ nix ];
-
-  buildFlags = [ "NIX_INCLUDE=${nix.dev}/include" ];
+  buildFlags = [ "NIX_INCLUDE=${nix.dev}/include" "GC_INCLUDE=${boehmgc.dev}/include" ];
 
   installFlags = [ "PREFIX=$(out)" ];