mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-05-01 08:37:55 +00:00
gnutls: Fix double application of callPackage
This commit is contained in:
parent
689897088c
commit
4f6b1565c7
1 changed files with 4 additions and 2 deletions
|
@ -6408,11 +6408,13 @@ let
|
||||||
|
|
||||||
gnutls = gnutls34;
|
gnutls = gnutls34;
|
||||||
|
|
||||||
gnutls33 = callPackage ../development/libraries/gnutls/3.3.nix {
|
gnutls33 = import ../development/libraries/gnutls/3.3.nix {
|
||||||
|
inherit callPackage fetchurl;
|
||||||
guileBindings = config.gnutls.guile or false;
|
guileBindings = config.gnutls.guile or false;
|
||||||
};
|
};
|
||||||
|
|
||||||
gnutls34 = callPackage ../development/libraries/gnutls/3.4.nix {
|
gnutls34 = import ../development/libraries/gnutls/3.4.nix {
|
||||||
|
inherit callPackage fetchurl;
|
||||||
guileBindings = config.gnutls.guile or false;
|
guileBindings = config.gnutls.guile or false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue