forked from mirrors/nixpkgs
Bump ppl to 0.11
This is so we only have one version of ppl when stdenv-updates is merged Tested by nix-build -A gcc4.4, for the reasons detailed in previous commit svn path=/nixpkgs/branches/stdenv-updates/; revision=26707
This commit is contained in:
parent
4a9c8df2de
commit
8aa7d7b1ac
|
@ -1,15 +1,15 @@
|
|||
{ fetchurl, stdenv, gmpxx, perl, gnum4, static ? false }:
|
||||
|
||||
let
|
||||
version = "0.10.2";
|
||||
staticFlags = if static then " --enable-static --disable-shared" else "";
|
||||
version = "0.11";
|
||||
staticFlags = if static then " --enable-static --disable-shared --disable-watchdog" else "";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ppl-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gcc/infrastructure/ppl-${version}.tar.gz";
|
||||
sha256 = "0lly44sac4jd72klnhhil3wha15vak76r6gy88sh0zjsaww9hf6h";
|
||||
sha256 = "0xqwyaj232gi0pgm6z2rihk6p8l1rngbbibnhmcrbq4jq550clrl";
|
||||
};
|
||||
|
||||
buildNativeInputs = [ perl gnum4 ];
|
||||
|
|
Loading…
Reference in a new issue