blob: a50c1a90087a8fec05e3cd1ec8428d445238f10d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// GNU software with trivial packaging.
package sed {
description = "a non-interactive command-line text editor";
website = "https://www.gnu.org/software/sed";
anitya = 4789;
version* = "4.10";
source = remoteTar {
url = "https://ftpmirror.gnu.org/gnu/sed/sed-"+version+".tar.gz";
checksum = "TXTRFQJCyflb-bpBRI2S5Y1DpplwvT7-KfXtpqN4AdZgZ5OtI6yStn1-bkhDKx51";
compress = gzip;
};
exec = make {};
inputs = [
diffutils,
kernel-headers,
];
}
|