[Nix-dev] Re: [Nix-commits] SVN commit: nix - r26810 - in nixpkgs/trunk/pkgs: desktops/gnome-2.28 desktops/gnome-2.28/desktop/libsoup development/libraries/gnutls development/libraries/libimobiledevice tools/networking/networ...
Ludovic Courtès
ludo at gnu.org
Tue Apr 12 23:32:23 CEST 2011
Hello,
Karn Kallio <tierpluspluslists at gmail.com> writes:
> Log:
> GnuTLS now introduces a dependency on gmp.
[...]
> --- nixpkgs/trunk/pkgs/development/libraries/gnutls/default.nix Tue Apr 12 16:37:11 2011 (r26809)
> +++ nixpkgs/trunk/pkgs/development/libraries/gnutls/default.nix Tue Apr 12 16:59:52 2011 (r26810)
> @@ -1,5 +1,5 @@
> { fetchurl, stdenv, zlib, lzo, libtasn1, nettle
> -, guileBindings, guile }:
> +, guileBindings, guile, gmp }:
>
> assert guileBindings -> guile != null;
>
> @@ -26,7 +26,7 @@
> buildInputs = [ zlib lzo libtasn1 ]
> ++ stdenv.lib.optional guileBindings guile;
>
> - propagatedBuildInputs = [ nettle ];
> + propagatedBuildInputs = [ nettle gmp ];
AFAICS GnuTLS does /not/ depend on GMP, but Nettle does.
Isn’t the proper fix to change Nettle (and not GnuTLS) to propagate GMP?
Thanks,
Ludo’.
More information about the nix-dev
mailing list