nix-plugins: Bump, unbreak
This commit is contained in:
parent
9fc14f23b8
commit
9904019841
@ -1,17 +1,18 @@
|
|||||||
{ stdenv, fetchgit, nix }:
|
{ stdenv, fetchFromGitHub, nix }:
|
||||||
|
let version = "2.0.2"; in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "nix-plugins-1.0.0";
|
name = "nix-plugins-${version}";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
url = git://github.com/shlevy/nix-plugins.git;
|
owner = "shlevy";
|
||||||
rev = "refs/tags/1.0.0";
|
repo = "nix-plugins";
|
||||||
sha256 = "1w7l4mdwgf5w1g48mbng4lcg2nihixvp835mg2j7gghnya309fxl";
|
rev = version;
|
||||||
|
sha256 = "02bi0p9qjpyxzbr0ki9q774lwdjwcpipkzx84xx9q1ywwafjhr7b";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ nix ];
|
buildInputs = [ nix ];
|
||||||
|
|
||||||
buildFlags = [ "NIX_INCLUDE=${nix}/include" ];
|
buildFlags = [ "NIX_INCLUDE=${nix.dev}/include" ];
|
||||||
|
|
||||||
installFlags = [ "PREFIX=$(out)" ];
|
installFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
@ -20,6 +21,5 @@ stdenv.mkDerivation {
|
|||||||
homepage = https://github.com/shlevy/nix-plugins;
|
homepage = https://github.com/shlevy/nix-plugins;
|
||||||
license = stdenv.lib.licenses.mit;
|
license = stdenv.lib.licenses.mit;
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = stdenv.lib.platforms.all;
|
||||||
broken = true;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -9131,9 +9131,7 @@ with pkgs;
|
|||||||
};
|
};
|
||||||
libnghttp2 = nghttp2.lib;
|
libnghttp2 = nghttp2.lib;
|
||||||
|
|
||||||
nix-plugins = callPackage ../development/libraries/nix-plugins {
|
nix-plugins = callPackage ../development/libraries/nix-plugins {};
|
||||||
nix = pkgs.nixUnstable;
|
|
||||||
};
|
|
||||||
|
|
||||||
nlohmann_json = callPackage ../development/libraries/nlohmann_json { };
|
nlohmann_json = callPackage ../development/libraries/nlohmann_json { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user