1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-01 01:51:24 +00:00
nixpkgs/pkgs/development/libraries/gnutls/3.5.nix

11 lines
305 B
Nix
Raw Normal View History

2016-06-20 13:17:13 +01:00
{ callPackage, fetchurl, autoreconfHook, ... } @ args:
callPackage ./generic.nix (args // rec {
2016-08-19 15:36:52 +01:00
version = "3.5.3";
2016-06-20 13:17:13 +01:00
src = fetchurl {
url = "ftp://ftp.gnutls.org/gcrypt/gnutls/v3.5/gnutls-${version}.tar.xz";
2016-08-19 15:36:52 +01:00
sha256 = "92c4bc999a10a1b95299ebefaeea8333f19d8a98d957a35b5eae74881bdb1fef";
2016-06-20 13:17:13 +01:00
};
})