libcli: add patch for gcc5

This commit is contained in:
Robin Gloster 2016-02-07 22:19:05 +00:00
parent 0f2e638fe7
commit f43398c91f

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub }:
{ stdenv, fetchFromGitHub, fetchpatch }:
stdenv.mkDerivation rec {
name = "libcli-${version}";
@ -11,6 +11,13 @@ stdenv.mkDerivation rec {
owner = "dparrish";
};
patches = [
(fetchpatch {
url = https://patch-diff.githubusercontent.com/raw/dparrish/libcli/pull/21.diff;
sha256 = "150nm33xi3992zx8a9smjzd8zs7pavrwg1pijah6nyl22q9gxm21";
})
];
enableParallelBuilding = true;
makeFlags = [ "PREFIX=$(out)" ];