From 70ef8a10eb80243e17b4c2b3f996285aefecd82d Mon Sep 17 00:00:00 2001 From: Rahul Gopinath Date: Wed, 6 Jul 2016 20:22:15 -0700 Subject: [PATCH] gmp: 6.1.0 -> 6.1.1 --- pkgs/development/libraries/gmp/6.x.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/gmp/6.x.nix b/pkgs/development/libraries/gmp/6.x.nix index d17ac5b8760..32009406a73 100644 --- a/pkgs/development/libraries/gmp/6.x.nix +++ b/pkgs/development/libraries/gmp/6.x.nix @@ -3,11 +3,11 @@ with { inherit (stdenv.lib) optional optionalString; }; 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 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; @@ -73,7 +73,7 @@ let self = stdenv.mkDerivation rec { ''; platforms = platforms.all; - maintainers = [ maintainers.peti ]; + maintainers = [ maintainers.peti maintainers.vrthra ]; }; }; in self