packages: project plus init
This commit is contained in:
parent
5fee6a8970
commit
308f18cdcd
3 changed files with 220 additions and 2 deletions
20
outputs/pkgs/project-plus/fpp-launcher.nix
Normal file
20
outputs/pkgs/project-plus/fpp-launcher.nix
Normal 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
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue