aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/nix-plugins
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2018-02-13 11:19:31 -0500
committerShea Levy <shea@shealevy.com>2018-02-13 11:19:31 -0500
commit9ef5d9c143e6f8a0716bfdb1031835bade82c989 (patch)
tree0852fabe4a467c72031420f064fd3f5129e13568 /pkgs/development/libraries/nix-plugins
parent358b821bbe30fa96accabeccaaf65914710f51ec (diff)
nix-plugins: Bump for new nix plugin mechanism
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 2dcc7e9a53dd..53178d66434d 100644
--- a/pkgs/development/libraries/nix-plugins/default.nix
+++ b/pkgs/development/libraries/nix-plugins/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchFromGitHub, nix, boehmgc }:
-let version = "2.0.7"; in
+{ stdenv, fetchFromGitHub, nix, boehmgc, cmake, pkgconfig }:
+let version = "3.0.1"; in
stdenv.mkDerivation {
name = "nix-plugins-${version}";
@@ -7,12 +7,10 @@ stdenv.mkDerivation {
owner = "shlevy";
repo = "nix-plugins";
rev = version;
- sha256 = "1q4ydp2w114wbfm41m4qgrabha7ifa17xyz5dr137vvnj6njp4vs";
+ sha256 = "1pmk2m0kc6a3jqygm5cy1fl5gbcy0ghc2xs4ww0gh20walrys82r";
};
- buildFlags = [ "NIX_INCLUDE=${nix.dev}/include" "GC_INCLUDE=${boehmgc.dev}/include" ];
-
- installFlags = [ "PREFIX=$(out)" ];
+ buildInputs = [ cmake pkgconfig nix ];
meta = {
description = "Collection of miscellaneous plugins for the nix expression language";