nix-plugins: Bump for new nix plugin mechanism

+6 -7
+4 -6
pkgs/development/libraries/nix-plugins/default.nix
··· 1 - { stdenv, fetchFromGitHub, nix, boehmgc }: 2 - let version = "2.0.7"; in 3 stdenv.mkDerivation { 4 name = "nix-plugins-${version}"; 5 ··· 7 owner = "shlevy"; 8 repo = "nix-plugins"; 9 rev = version; 10 - sha256 = "1q4ydp2w114wbfm41m4qgrabha7ifa17xyz5dr137vvnj6njp4vs"; 11 }; 12 13 - buildFlags = [ "NIX_INCLUDE=${nix.dev}/include" "GC_INCLUDE=${boehmgc.dev}/include" ]; 14 - 15 - installFlags = [ "PREFIX=$(out)" ]; 16 17 meta = { 18 description = "Collection of miscellaneous plugins for the nix expression language";
··· 1 + { stdenv, fetchFromGitHub, nix, boehmgc, cmake, pkgconfig }: 2 + let version = "3.0.1"; in 3 stdenv.mkDerivation { 4 name = "nix-plugins-${version}"; 5 ··· 7 owner = "shlevy"; 8 repo = "nix-plugins"; 9 rev = version; 10 + sha256 = "1pmk2m0kc6a3jqygm5cy1fl5gbcy0ghc2xs4ww0gh20walrys82r"; 11 }; 12 13 + buildInputs = [ cmake pkgconfig nix ]; 14 15 meta = { 16 description = "Collection of miscellaneous plugins for the nix expression language";
+2 -1
pkgs/top-level/all-packages.nix
··· 10400 }; 10401 libnghttp2 = nghttp2.lib; 10402 10403 - nix-plugins = callPackage ../development/libraries/nix-plugins {}; 10404 10405 nlohmann_json = callPackage ../development/libraries/nlohmann_json { }; 10406
··· 10400 }; 10401 libnghttp2 = nghttp2.lib; 10402 10403 + nix-plugins = callPackage ../development/libraries/nix-plugins 10404 + { nix = nixUnstable; }; 10405 10406 nlohmann_json = callPackage ../development/libraries/nlohmann_json { }; 10407