1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

ppl: fix build

This commit is contained in:
Vincent Laporte 2018-02-18 12:11:06 +00:00
parent a09119041c
commit 0c7a1fcf96
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

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 ];