1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-19 17:39:34 +00:00

gmp: 6.1.0 -> 6.1.1

This commit is contained in:
Rahul Gopinath 2016-07-06 20:22:15 -07:00 committed by Vladimír Čunát
parent 2dca0444fa
commit 70ef8a10eb

View file

@ -3,11 +3,11 @@
with { inherit (stdenv.lib) optional optionalString; }; with { inherit (stdenv.lib) optional optionalString; };
let self = stdenv.mkDerivation rec { let self = stdenv.mkDerivation rec {
name = "gmp-6.1.0"; name = "gmp-6.1.1";
src = fetchurl { # we need to use bz2, others aren't in bootstrapping stdenv src = fetchurl { # we need to use bz2, others aren't in bootstrapping stdenv
urls = [ "mirror://gnu/gmp/${name}.tar.bz2" "ftp://ftp.gmplib.org/pub/${name}/${name}.tar.bz2" ]; urls = [ "mirror://gnu/gmp/${name}.tar.bz2" "ftp://ftp.gmplib.org/pub/${name}/${name}.tar.bz2" ];
sha256 = "1s3kddydvngqrpc6i1vbz39raya2jdcl042wi0ksbszgjjllk129"; sha256 = "1mpzprdzkgfpdc1v2lf4dxlxps4x8bvmzvd8n1ri6gw9y9jrh458";
}; };
#outputs TODO: split $cxx due to libstdc++ dependency; maybe port to gmp5; #outputs TODO: split $cxx due to libstdc++ dependency; maybe port to gmp5;
@ -73,7 +73,7 @@ let self = stdenv.mkDerivation rec {
''; '';
platforms = platforms.all; platforms = platforms.all;
maintainers = [ maintainers.peti ]; maintainers = [ maintainers.peti maintainers.vrthra ];
}; };
}; };
in self in self