mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
e82d74132c
- 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.
11 lines
235 B
Nix
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";
|
|
};
|
|
}
|