nix-plugins: 4.0.5 -> 5.0.0.

Fixes build against nix 2.1.
This commit is contained in:
Shea Levy 2018-09-06 15:14:29 -04:00
parent 765a8c8cd5
commit 56a605c8b9
No known key found for this signature in database
GPG Key ID: 5C0BD6957D86FE27

View File

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