summary refs log tree commit diff
path: root/pkgs/development/libraries/nettle/default.nix
blob: ed4948cd7f8038dbfd5a627821d15dc0ef8486c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ callPackage, fetchurl }:

callPackage ./generic.nix rec {
  version = "3.8";

  src = fetchurl {
    url = "mirror://gnu/nettle/nettle-${version}.tar.gz";
    hash = "sha256-dXbGhIHBmPZEsIwWDRpIULqUSeMIBpRVtSEzGfI06OY=";
  };
}