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

gmp: update to version 5.1.1

This commit is contained in:
Peter Simons 2013-02-18 12:01:49 +01:00
parent 9e68734d61
commit 4994518501
2 changed files with 6 additions and 7 deletions

View file

@ -1,11 +1,11 @@
{ stdenv, fetchurl, m4, cxx ? true }:
stdenv.mkDerivation rec {
name = "gmp-5.1.0";
name = "gmp-5.1.1";
src = fetchurl {
urls = [ "mirror://gnu/gmp/${name}.tar.bz2" "ftp://ftp.gmplib.org/pub/${name}/${name}.tar.bz2" ];
sha256 = "15n7xxgasbxdch8ii8z9ic6fxc2ysk3q8iavf55abjp5iylspnfz";
sha256 = "1bdgf04k2i12pfivxgjq68iarz3ngix9hpzbmkgijrdk92gpgm50";
};
nativeBuildInputs = [ m4 ];
@ -22,7 +22,9 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
meta = {
homepage = "http://gmplib.org/";
description = "GMP, the GNU multiple precision arithmetic library";
license = stdenv.lib.licenses.gpl3Plus;
longDescription =
'' GMP is a free library for arbitrary precision arithmetic, operating
@ -46,10 +48,7 @@ stdenv.mkDerivation rec {
asymptotically faster algorithms.
'';
homepage = http://gmplib.org/;
license = "LGPLv3+";
maintainers = [ stdenv.lib.maintainers.ludo stdenv.lib.maintainers.simons ];
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.ludo stdenv.lib.maintainers.simons ];
};
}

View file

@ -3765,7 +3765,7 @@ let
gmp5 = callPackage ../development/libraries/gmp/5.0.5.nix { };
gmp51 = callPackage ../development/libraries/gmp/5.1.0.nix { };
gmp51 = callPackage ../development/libraries/gmp/5.1.1.nix { };
gobjectIntrospection = callPackage ../development/libraries/gobject-introspection { };