48 lines
1.3 KiB
Nix
48 lines
1.3 KiB
Nix
{ stdenvNoCC
|
|
, makeWrapper
|
|
, lib
|
|
, fetchFromGitHub
|
|
, bash
|
|
, nix
|
|
, coreutils
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
name = "disko";
|
|
version = "1.6.1";
|
|
src = fetchFromGitHub {
|
|
owner = "nix-community";
|
|
repo = "disko";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-5CNvkH0Nf7yMwgKhjUNg/lUK40C7DXB4zKOuA2jVO90=";
|
|
};
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ bash ];
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin $out/share/disko
|
|
cp -r install-cli.nix cli.nix default.nix disk-deactivate lib $out/share/disko
|
|
|
|
for i in disko disko-install; do
|
|
sed -e "s|libexec_dir=\".*\"|libexec_dir=\"$out/share/disko\"|" "$i" > "$out/bin/$i"
|
|
chmod 755 "$out/bin/$i"
|
|
wrapProgram "$out/bin/$i" --prefix PATH : ${lib.makeBinPath [ nix coreutils ]}
|
|
done
|
|
runHook postInstall
|
|
'';
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
$out/bin/disko --help
|
|
$out/bin/disko-install --help
|
|
runHook postInstallCheck
|
|
'';
|
|
meta = {
|
|
homepage = "https://github.com/nix-community/disko";
|
|
description = "Declarative disk partitioning and formatting using nix";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "disko";
|
|
maintainers = with lib.maintainers; [ mic92 lassulus ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|