nix-plugins: 5.0.0 -> 6.0.0

This commit is contained in:
Shea Levy 2018-10-28 00:25:39 -04:00
parent bd7e0aec71
commit 9b111955ec
No known key found for this signature in database
GPG Key ID: 5C0BD6957D86FE27
2 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, nix, cmake, pkgconfig, boost }:
let version = "5.0.0"; in
let version = "6.0.0"; in
stdenv.mkDerivation {
name = "nix-plugins-${version}";
@ -7,7 +7,7 @@ stdenv.mkDerivation {
owner = "shlevy";
repo = "nix-plugins";
rev = version;
sha256 = "0231j92504vx0f4wax9hwjdni1j4z0g8bx9wbakg6rbghl4svmdv";
sha256 = "08kxdci0sijj1hfkn3dbr7nbpb9xck0xr3xa3a0j116n4kvwb6qv";
};
nativeBuildInputs = [ cmake pkgconfig ];

View File

@ -11502,7 +11502,9 @@ with pkgs;
};
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 { };