nixpkgs/pkgs/development/libraries/nettle/default.nix
Vladimír Čunát e82d74132c
nettle: start maintaining the expression
- consolidate configureFlags
- remove double callPackage; I suspect it's unhealthy for overrides

We haven't needed multiple nettle versions for years I think (d3e488c),
but the split to {default,generic}.nix doesn't seem problematic,
so I kept it to avoid making the history slightly harder to follow.
2021-03-22 11:06:08 +01:00

11 lines
235 B
Nix

{ callPackage, fetchurl }:
callPackage ./generic.nix rec {
version = "3.7.2";
src = fetchurl {
url = "mirror://gnu/nettle/nettle-${version}.tar.gz";
sha256 = "0qpi1qp3bcvqdsaxy2pzg530db95x8qjahkynxgwvr6dy5760ald";
};
}