This commit is contained in:
mjallen18
2026-04-16 12:38:07 -05:00
parent 95f08a258e
commit 1767debfd8
13 changed files with 104 additions and 95 deletions

View File

@@ -36,7 +36,7 @@ let
in
stdenv.mkDerivation (finalAttrs: {
pname = "bcachefs-tools";
version = "1.37.2";
version = "1.37.5";
src = sources.bcachefs-tools;

View File

@@ -4,11 +4,11 @@
"bcachefs-tools": {
"fetcher": "git",
"url": "https://github.com/koverstreet/bcachefs-tools",
"rev": "v1.37.4",
"hash": "sha256-VlljE+xoKg6GryVuebUA1v9x2shMBUb7veCtD68MBJw="
"rev": "v1.37.5",
"hash": "sha256-x/hpOTvLYyNIsC8ZM0zmTwL8GsiqaTg0ZjQNiS7Y2Wo="
},
"cargoDeps": {
"hash": "sha256-t6ghsIRJFR2Kqism4tdizhnJ8qcE2ZZwH6c3nYogHlo="
"hash": "sha256-+9vy+StbFxN+2sNrObLUhvn0BhPZLW6zXuw0uUbaRmw="
}
}
}

View File

@@ -1,7 +1,32 @@
{
stdenv,
writeShellScriptBin,
appimage-run
}:
writeShellScriptBin "hueforge" ''
exec ${appimage-run}/bin/appimage-run HueForge_Linux_v0.9.3.1.AppImage "$@"
'';
let
src = ./HueForge_Linux_v0.9.3.1.AppImage;
wrapperScript = writeShellScriptBin "hueforge" ''
exec ${appimage-run}/bin/appimage-run ${src} "$@"
'';
in
stdenv.mkDerivation rec {
inherit src;
pname = "hueforge";
version = "0.9.3.1";
dontUnpack = true;
dontConfigure = true;
dontPatch = true;
dontFixup = true;
dontBuild = true;
installPhase = ''
runHook preInstall
mkdir -p $out/{share,bin}
cp $src $out/share/HueForge_Linux_v0.9.3.1.AppImage
cp ${wrapperScript}/bin/hueforge $out/bin/hueforge
runHook postInstall
'';
}