Test / Create distribution (push) Successful in 54s
Test / Sandbox (push) Successful in 2m59s
Test / Hakurei (push) Successful in 4m49s
Test / Sandbox (race detector) (push) Successful in 5m50s
Test / Hakurei (race detector) (push) Successful in 7m11s
Test / ShareFS (push) Successful in 7m32s
Test / Flake checks (push) Successful in 1m10s
This uses more intuitive names for some arguments and inverts their default value. Slices and nil-capable strings replace skip arguments. Signed-off-by: Ophestra <cat@gensokyo.uk>
29 lines
575 B
Go
29 lines
575 B
Go
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 = [
|
|
pkg-config,
|
|
|
|
libaio,
|
|
kernel-headers,
|
|
];
|
|
}
|