2024-01-05 00:07:01 +00:00
|
|
|
{
|
2024-06-30 15:58:29 +00:00
|
|
|
stdenv,
|
|
|
|
fetchFromGitLab,
|
|
|
|
makeWrapper,
|
|
|
|
btrfs-progs,
|
|
|
|
util-linux-small,
|
|
|
|
lib,
|
2024-01-05 00:07:01 +00:00
|
|
|
}:
|
2025-02-10 21:55:08 +00:00
|
|
|
let
|
|
|
|
search_path = lib.makeBinPath [
|
|
|
|
btrfs-progs
|
|
|
|
util-linux-small
|
|
|
|
];
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2024-01-05 00:07:01 +00:00
|
|
|
pname = "schnapps";
|
|
|
|
version = "2.13.0";
|
|
|
|
|
2024-06-30 15:58:29 +00:00
|
|
|
src = fetchFromGitLab {
|
2024-01-05 00:07:01 +00:00
|
|
|
domain = "gitlab.nic.cz";
|
|
|
|
owner = "turris";
|
|
|
|
repo = "schnapps";
|
|
|
|
rev = "53ac92c765d670be4b98dba2c948859a9ac7607f";
|
|
|
|
hash = "sha256-yVgXK+V2wrcOPLB6X6qm3hyBcWcyzNhfJjFF7YRk5Lc=";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildPhase = ":";
|
|
|
|
installPhase = ''
|
|
|
|
install -D schnapps.sh $out/bin/schnapps
|
|
|
|
wrapProgram $out/bin/schnapps --prefix PATH : "${search_path}"
|
|
|
|
'';
|
|
|
|
}
|