packages: project plus init

This commit is contained in:
ooks-io 2025-01-09 21:56:36 +11:00
parent 5fee6a8970
commit 308f18cdcd
3 changed files with 220 additions and 2 deletions

View file

@ -0,0 +1,20 @@
{
stdenv,
fetchzip,
}: let
version = "3.0.5";
in
stdenv.mkDerivation {
inherit version;
name = "fpp-launcher";
src = fetchzip {
url = "https://github.com/jlambert360/FPM-AppImage/releases/download/v${version}/Launcher.tar.gz";
sha256 = "sha256-Q3F4V/ggePaZRsGFM54hkGBkLb52PaIn2lQ31gYANW0=";
};
installPhase = ''
mkdir -p $out/Launcher
cp -rf . $out/Launcher
'';
}