summary refs log tree commit diff
path: root/pkgs/development/libraries/gnutls/3.5.nix
blob: 7d58bfcd67ff945208a380e4940429e89fc81ee5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ callPackage, fetchurl, libunistring, ... } @ args:

callPackage ./generic.nix (args // rec {
  version = "3.5.8";

  src = fetchurl {
    url = "ftp://ftp.gnutls.org/gcrypt/gnutls/v3.5/gnutls-${version}.tar.xz";
    sha256 = "1zyl2z63s68hx1dpxqx0lykmlf3rwrzlrf44sq3h7dvjmr1z55qf";
  };

  buildInputs = [ libunistring ];
})