blob: e30696a2c595779ff25ae2c35ed20c949b5bef95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package nettle {
description = "a low-level cryptographic library";
website = "https://www.lysator.liu.se/~nisse/nettle";
anitya = 2073;
version# = "4.0";
source = remoteTar {
url = "https://mirrors.kernel.org/gnu/nettle/nettle-"+version+".tar.gz";
checksum = "6agC-vHzzoqAlaX3K9tX8yHgrm03HLqPZzVzq8jh_ePbuPMIvpxereu_uRJFmQK7";
compress = gzip;
};
exec = make {};
tools = [
m4,
diffutils,
];
inputs = [ gmp ];
}
|