From 9ef5d9c143e6f8a0716bfdb1031835bade82c989 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Tue, 13 Feb 2018 11:19:31 -0500 Subject: nix-plugins: Bump for new nix plugin mechanism --- pkgs/development/libraries/nix-plugins/default.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'pkgs/development/libraries/nix-plugins/default.nix') diff --git a/pkgs/development/libraries/nix-plugins/default.nix b/pkgs/development/libraries/nix-plugins/default.nix index 2dcc7e9a53d..53178d66434 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"; -- cgit 1.4.1