mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
122 lines
2.6 KiB
Nix
122 lines
2.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, cargo
|
|
, rustc
|
|
, pkg-config
|
|
, asciidoc
|
|
, ncurses
|
|
, glibc
|
|
, dbus
|
|
, cryptsetup
|
|
, util-linux
|
|
, udev
|
|
, lvm2
|
|
, systemd
|
|
, xfsprogs
|
|
, thin-provisioning-tools
|
|
, clevis
|
|
, jose
|
|
, jq
|
|
, curl
|
|
, tpm2-tools
|
|
, coreutils
|
|
, clevisSupport ? false
|
|
, nixosTests
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "stratisd";
|
|
version = "3.5.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stratis-storage";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-V/1gNgjunT11ErXWIa5hDp2+onPCTequCswwXWD5+9E=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
inherit src;
|
|
hash = "sha256-RljuLL8tep42KNGVsS5CxI7xuhxEjRZ90jVn3jUhVYM=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace udev/61-stratisd.rules \
|
|
--replace stratis-base32-decode "$out/lib/udev/stratis-base32-decode" \
|
|
--replace stratis-str-cmp "$out/lib/udev/stratis-str-cmp"
|
|
|
|
substituteInPlace systemd/stratis-fstab-setup \
|
|
--replace stratis-min "$out/bin/stratis-min" \
|
|
--replace systemd-ask-password "${systemd}/bin/systemd-ask-password" \
|
|
--replace sleep "${coreutils}/bin/sleep" \
|
|
--replace udevadm "${udev}/bin/udevadm"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
rustPlatform.cargoSetupHook
|
|
rustPlatform.bindgenHook
|
|
cargo
|
|
rustc
|
|
pkg-config
|
|
asciidoc
|
|
ncurses # tput
|
|
];
|
|
|
|
buildInputs = [
|
|
glibc
|
|
glibc.static
|
|
dbus
|
|
cryptsetup
|
|
util-linux
|
|
udev
|
|
lvm2
|
|
];
|
|
|
|
outputs = ["out" "initrd"];
|
|
|
|
EXECUTABLES_PATHS = lib.makeBinPath ([
|
|
xfsprogs
|
|
thin-provisioning-tools
|
|
] ++ lib.optionals clevisSupport [
|
|
clevis
|
|
jose
|
|
jq
|
|
cryptsetup
|
|
curl
|
|
tpm2-tools
|
|
coreutils
|
|
]);
|
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" "INSTALL=install" ];
|
|
buildFlags = [ "build-all" ];
|
|
|
|
doCheck = true;
|
|
checkTarget = "test";
|
|
|
|
# remove files for supporting dracut
|
|
postInstall = ''
|
|
mkdir -p "$initrd/bin"
|
|
cp "dracut/90stratis/stratis-rootfs-setup" "$initrd/bin"
|
|
mkdir -p "$initrd/lib/systemd/system"
|
|
substitute "dracut/90stratis/stratisd-min.service" "$initrd/lib/systemd/system/stratisd-min.service" \
|
|
--replace /usr "$out" \
|
|
--replace mkdir "${coreutils}/bin/mkdir"
|
|
mkdir -p "$initrd/lib/udev/rules.d"
|
|
cp udev/61-stratisd.rules "$initrd/lib/udev/rules.d"
|
|
rm -r "$out/lib/dracut"
|
|
rm -r "$out/lib/systemd/system-generators"
|
|
'';
|
|
|
|
passthru.tests = nixosTests.stratis;
|
|
|
|
meta = with lib; {
|
|
description = "Easy to use local storage management for Linux";
|
|
homepage = "https://stratis-storage.github.io";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ nickcao ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|