blob: bb683509029aff4960e868dfdca68db6c4435c82 (
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
|
package lvm2 {
description = "userspace toolset that provide logical volume management facilities";
website = "https://sourceware.org/lvm2";
anitya = 5354;
version# = "2.03.42";
source = remoteTar {
url = "https://mirrors.kernel.org/sourceware/lvm2/releases/LVM2."+version+".tgz";
compress = gzip;
checksum = "qzqVAeW9ttt_H5W0Wfg8twvZjFZH7x_RIzSjqYSooMsRpiXQ7yNdOL1MXY5Zntvi";
};
patches = [
"fix-stdio-usage.patch",
"remove-man.patch",
];
exec = make {
// requires root
check = nil;
};
inputs = [
pkgconf,
libaio,
kernel-headers,
];
}
|