aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/nix-plugins
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2017-04-04 11:29:40 -0400
committerShea Levy <shea@shealevy.com>2017-04-04 11:29:40 -0400
commit9904019841b66a11d1dce48a54c15539f0731614 (patch)
tree76f6a9699849d32d97b5d02ee2cea3d3a4770305 /pkgs/development/libraries/nix-plugins
parent9fc14f23b8cc5a4868bb3f78630f0aeb453883ff (diff)
nix-plugins: Bump, unbreak
Diffstat (limited to 'pkgs/development/libraries/nix-plugins')
-rw-r--r--pkgs/development/libraries/nix-plugins/default.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/development/libraries/nix-plugins/default.nix b/pkgs/development/libraries/nix-plugins/default.nix
index 8a5d54952606..647f30f98280 100644
--- a/pkgs/development/libraries/nix-plugins/default.nix
+++ b/pkgs/development/libraries/nix-plugins/default.nix
@@ -1,17 +1,18 @@
-{ stdenv, fetchgit, nix }:
-
+{ stdenv, fetchFromGitHub, nix }:
+let version = "2.0.2"; in
stdenv.mkDerivation {
- name = "nix-plugins-1.0.0";
+ name = "nix-plugins-${version}";
- src = fetchgit {
- url = git://github.com/shlevy/nix-plugins.git;
- rev = "refs/tags/1.0.0";
- sha256 = "1w7l4mdwgf5w1g48mbng4lcg2nihixvp835mg2j7gghnya309fxl";
+ src = fetchFromGitHub {
+ owner = "shlevy";
+ repo = "nix-plugins";
+ rev = version;
+ sha256 = "02bi0p9qjpyxzbr0ki9q774lwdjwcpipkzx84xx9q1ywwafjhr7b";
};
buildInputs = [ nix ];
- buildFlags = [ "NIX_INCLUDE=${nix}/include" ];
+ buildFlags = [ "NIX_INCLUDE=${nix.dev}/include" ];
installFlags = [ "PREFIX=$(out)" ];
@@ -20,6 +21,5 @@ stdenv.mkDerivation {
homepage = https://github.com/shlevy/nix-plugins;
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.all;
- broken = true;
};
}