nix-plugins: Bump for new nix plugin mechanism
This commit is contained in:
parent
358b821bbe
commit
9ef5d9c143
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchFromGitHub, nix, boehmgc }:
|
{ stdenv, fetchFromGitHub, nix, boehmgc, cmake, pkgconfig }:
|
||||||
let version = "2.0.7"; in
|
let version = "3.0.1"; in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "nix-plugins-${version}";
|
name = "nix-plugins-${version}";
|
||||||
|
|
||||||
@ -7,12 +7,10 @@ stdenv.mkDerivation {
|
|||||||
owner = "shlevy";
|
owner = "shlevy";
|
||||||
repo = "nix-plugins";
|
repo = "nix-plugins";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1q4ydp2w114wbfm41m4qgrabha7ifa17xyz5dr137vvnj6njp4vs";
|
sha256 = "1pmk2m0kc6a3jqygm5cy1fl5gbcy0ghc2xs4ww0gh20walrys82r";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildFlags = [ "NIX_INCLUDE=${nix.dev}/include" "GC_INCLUDE=${boehmgc.dev}/include" ];
|
buildInputs = [ cmake pkgconfig nix ];
|
||||||
|
|
||||||
installFlags = [ "PREFIX=$(out)" ];
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Collection of miscellaneous plugins for the nix expression language";
|
description = "Collection of miscellaneous plugins for the nix expression language";
|
||||||
|
@ -10400,7 +10400,8 @@ with pkgs;
|
|||||||
};
|
};
|
||||||
libnghttp2 = nghttp2.lib;
|
libnghttp2 = nghttp2.lib;
|
||||||
|
|
||||||
nix-plugins = callPackage ../development/libraries/nix-plugins {};
|
nix-plugins = callPackage ../development/libraries/nix-plugins
|
||||||
|
{ nix = nixUnstable; };
|
||||||
|
|
||||||
nlohmann_json = callPackage ../development/libraries/nlohmann_json { };
|
nlohmann_json = callPackage ../development/libraries/nlohmann_json { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user