Merge pull request #35192 from vbgl/ppl-typename

ppl: fix build
This commit is contained in:
Jörg Thalheim 2018-02-20 23:13:23 +00:00 committed by GitHub
commit eda72ad748
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ fetchurl, stdenv, gmpxx, perl, gnum4 }:
{ fetchurl, fetchpatch, stdenv, gmpxx, perl, gnum4 }:
let version = "1.2"; in
@ -10,6 +10,12 @@ stdenv.mkDerivation rec {
sha256 = "1wgxcbgmijgk11df43aiqfzv31r3bkxmgb4yl68g21194q60nird";
};
patches = [(fetchpatch {
name = "ppl.patch";
url = "http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=patch;h=c39f6a07b51f89e365b05ba4147aa2aa448febd7";
sha256 = "1zj90hm25pkgvk4jlkfzh18ak9b98217gbidl3731fdccbw6hr87";
})];
nativeBuildInputs = [ perl gnum4 ];
propagatedBuildInputs = [ gmpxx ];