lvm2: package 2.02.x for musl
This commit is contained in:
@@ -0,0 +1,4 @@
|
|||||||
|
import ./common.nix {
|
||||||
|
version = "2.02.187";
|
||||||
|
sha256Hash = "sha256-Dg1SGoY6XbJEDy4edie6grcCc65KsLvhMIUdsNWOWvE=";
|
||||||
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
import ./common.nix {
|
||||||
|
version = "2.03.12";
|
||||||
|
sha256Hash = "1shczwfd0888dchjiaqzd48ampm6f8y0ngsqd99fy4nxlbr5q1vn";
|
||||||
|
}
|
||||||
@@ -1,3 +1,5 @@
|
|||||||
|
{ version, sha256Hash }:
|
||||||
|
|
||||||
{ lib, stdenv
|
{ lib, stdenv
|
||||||
, fetchpatch
|
, fetchpatch
|
||||||
, fetchurl
|
, fetchurl
|
||||||
@@ -15,12 +17,12 @@
|
|||||||
assert enableDmeventd -> enableCmdlib;
|
assert enableDmeventd -> enableCmdlib;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "lvm2" + lib.optionalString enableDmeventd "with-dmeventd";
|
pname = "lvm2" + lib.optionalString enableDmeventd "-with-dmeventd";
|
||||||
version = "2.03.12";
|
inherit version;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://mirrors.kernel.org/sourceware/lvm2/LVM2.${version}.tgz";
|
url = "https://mirrors.kernel.org/sourceware/lvm2/LVM2.${version}.tgz";
|
||||||
sha256 = "1shczwfd0888dchjiaqzd48ampm6f8y0ngsqd99fy4nxlbr5q1vn";
|
sha256 = sha256Hash;
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
@@ -60,6 +62,7 @@ stdenv.mkDerivation rec {
|
|||||||
--replace "(BINDIR)/systemd-run" /run/current-system/systemd/bin/systemd-run
|
--replace "(BINDIR)/systemd-run" /run/current-system/systemd/bin/systemd-run
|
||||||
|
|
||||||
substituteInPlace make.tmpl.in --replace "@systemdsystemunitdir@" "$out/lib/systemd/system"
|
substituteInPlace make.tmpl.in --replace "@systemdsystemunitdir@" "$out/lib/systemd/system"
|
||||||
|
'' + lib.optionalString (lib.versionAtLeast version "2.03") ''
|
||||||
substituteInPlace libdm/make.tmpl.in --replace "@systemdsystemunitdir@" "$out/lib/systemd/system"
|
substituteInPlace libdm/make.tmpl.in --replace "@systemdsystemunitdir@" "$out/lib/systemd/system"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
@@ -21935,13 +21935,18 @@ with pkgs;
|
|||||||
|
|
||||||
lsscsi = callPackage ../os-specific/linux/lsscsi { };
|
lsscsi = callPackage ../os-specific/linux/lsscsi { };
|
||||||
|
|
||||||
lvm2 = callPackage ../os-specific/linux/lvm2 {
|
lvm2-2_03 = callPackage ../os-specific/linux/lvm2/2_03.nix {
|
||||||
# udev is the same package as systemd which depends on cryptsetup
|
# udev is the same package as systemd which depends on cryptsetup
|
||||||
# which depends on lvm2 again. But we only need the libudev part
|
# which depends on lvm2 again. But we only need the libudev part
|
||||||
# which does not depend on cryptsetup.
|
# which does not depend on cryptsetup.
|
||||||
udev = systemdMinimal;
|
udev = systemdMinimal;
|
||||||
};
|
};
|
||||||
lvm2_dmeventd = callPackage ../os-specific/linux/lvm2 {
|
lvm2-2_02 = callPackage ../os-specific/linux/lvm2/2_02.nix {
|
||||||
|
udev = systemdMinimal;
|
||||||
|
};
|
||||||
|
lvm2 = if stdenv.targetPlatform.isMusl then lvm2-2_02 else lvm2-2_03;
|
||||||
|
|
||||||
|
lvm2_dmeventd = lvm2.override {
|
||||||
enableDmeventd = true;
|
enableDmeventd = true;
|
||||||
enableCmdlib = true;
|
enableCmdlib = true;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user