blob: 1ce1f9eccb10276710033d4bf2438bf67f8c7e55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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 {};
inputs = [
m4,
diffutils,
gmp,
];
runtime = [ gmp ];
}
|