lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

mpfr: 3.1.3 -> 3.1.6 (bugfix)

There's also 4.0.0, but I'd leave that for later.

+4 -6
+4 -6
pkgs/development/libraries/mpfr/default.nix
··· 1 1 { stdenv, fetchurl, gmp 2 - , buildPlatform, hostPlatform 2 + , hostPlatform 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { 6 - name = "mpfr-3.1.3"; 6 + name = "mpfr-3.1.6"; 7 7 8 8 src = fetchurl { 9 - url = "mirror://gnu/mpfr/${name}.tar.bz2"; 10 - sha256 = "1z8akfw9wbmq91vrx04bw86mmnxw2sw5qm5cr8ix5b3w2mcv8fzn"; 9 + url = "mirror://gnu/mpfr/${name}.tar.xz"; 10 + sha256 = "0l598h9klpgkz2bp0rxiqb90mkqh9f2f81n5rpy191j00hdaqqks"; 11 11 }; 12 - 13 - patches = [ ./upstream.patch ]; 14 12 15 13 outputs = [ "out" "dev" "doc" "info" ]; 16 14