blob: 6908ff8833600207a51f137a93b4cdfe811c6323 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
package attr {
description = "Commands for Manipulating Filesystem Extended Attributes";
website = "https://savannah.nongnu.org/projects/attr";
anitya = 137;
version# = "2.6.0";
source = remoteTar {
url = "https://download.savannah.nongnu.org/releases/attr/"+
"attr-"+version+".tar.gz";
checksum = "pp-NvD1cMIwZycNwZGW2ez-PbTEpHxrRnVH27csj9QdN4oEBkEbJOZX1IIvKnTWS";
compress = gzip;
};
patches = [ "musl-errno.patch" ];
bin = [ "perl" ];
populateUsrBin = true;
exec = make {};
inputs = [
perl,
kernel-headers,
];
}
package acl {
description = "Commands for Manipulating POSIX Access Control Lists";
website = "https://savannah.nongnu.org/projects/acl";
anitya = 16;
version# = "2.4.0";
source = remoteTar {
url = "https://download.savannah.nongnu.org/releases/acl/"+
"acl-"+version+".tar.gz";
checksum = "U2eaAsWrhhzEfhyprwHQQG55bFPZxtsHk1Usnd9Jb_g-H__pJod4H3RTrL4ipXDw";
compress = gzip;
};
exec = make {
// makes assumptions about uid_map/gid_map
check = nil;
};
inputs = [ attr, kernel-headers ];
runtime = [ attr ];
}
|