forked from mirrors/nixpkgs
gnutls35: init at 3.5.1
This commit is contained in:
parent
325dafe82b
commit
2cf31a1840
17
pkgs/development/libraries/gnutls/3.5.nix
Normal file
17
pkgs/development/libraries/gnutls/3.5.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ callPackage, fetchurl, autoreconfHook, ... } @ args:
|
||||
|
||||
callPackage ./generic.nix (args // rec {
|
||||
version = "3.5.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "ftp://ftp.gnutls.org/gcrypt/gnutls/v3.5/gnutls-${version}.tar.xz";
|
||||
sha256 = "1gdxr1p1sigigwvangqf3v31i8fda07d6ngawykarhr7ls00yjmw";
|
||||
};
|
||||
|
||||
# This fixes some broken parallel dependencies
|
||||
postPatch = ''
|
||||
sed -i 's,^BUILT_SOURCES =,\0 systemkey-args.h,g' src/Makefile.am
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
})
|
|
@ -7254,6 +7254,10 @@ in
|
|||
guileBindings = config.gnutls.guile or false;
|
||||
};
|
||||
|
||||
gnutls35 = callPackage ../development/libraries/gnutls/3.5.nix {
|
||||
guileBindings = config.gnutls.guile or false;
|
||||
};
|
||||
|
||||
gpac = callPackage ../applications/video/gpac { };
|
||||
|
||||
gpgme = callPackage ../development/libraries/gpgme {
|
||||
|
|
Loading…
Reference in a new issue