blob: 0f63e80d5b8c002e099c13b2ee1b56be0d05667e (
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.41";
source = remoteTar {
url = "https://mirrors.kernel.org/sourceware/lvm2/releases/LVM2."+version+".tgz";
compress = gzip;
checksum = "M3L0oaeEG-0FvL7gYoeLwWIm-RBtKa4-ojwezRqL8xqiyU_5N7uE2bvwTeVJ154z";
};
patches = [
"fix-stdio-usage.patch",
"remove-man.patch",
];
exec = make {
// requires root
skipCheck = true;
};
inputs = [
pkg-config,
libaio,
kernel-headers,
];
}
|