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
1 changed files with 2 additions and 2 deletions

View File

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