aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/nix-plugins
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2018-04-11 15:22:05 -0400
committerShea Levy <shea@shealevy.com>2018-04-11 15:22:05 -0400
commitb84a8c06c647988cbb2e07e7f231cae6108966da (patch)
tree8226a966128288d5e70588a539a6d55a54721ebf /pkgs/development/libraries/nix-plugins
parent0a9f34ad2719195ae16ddfca55d2870b5cecc02a (diff)
nix-plugins: 3.0.1 -> 4.0.1
Diffstat (limited to 'pkgs/development/libraries/nix-plugins')
-rw-r--r--pkgs/development/libraries/nix-plugins/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/nix-plugins/default.nix b/pkgs/development/libraries/nix-plugins/default.nix
index 8ccaf726e6b0..bf48997c2799 100644
--- a/pkgs/development/libraries/nix-plugins/default.nix
+++ b/pkgs/development/libraries/nix-plugins/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchFromGitHub, nix, cmake, pkgconfig }:
-let version = "3.0.1"; in
+{ stdenv, fetchFromGitHub, nix, cmake, pkgconfig, boost }:
+let version = "4.0.1"; in
stdenv.mkDerivation {
name = "nix-plugins-${version}";
@@ -7,12 +7,12 @@ stdenv.mkDerivation {
owner = "shlevy";
repo = "nix-plugins";
rev = version;
- sha256 = "1pmk2m0kc6a3jqygm5cy1fl5gbcy0ghc2xs4ww0gh20walrys82r";
+ sha256 = "1v7wf9l1zjlvpy23v03q5lc8d16isqb7wv1nqry1jjm0bcva72jg";
};
nativeBuildInputs = [ cmake pkgconfig ];
- buildInputs = [ nix ];
+ buildInputs = [ nix boost ];
meta = {
description = "Collection of miscellaneous plugins for the nix expression language";