packages: project-plus; remove User config
This commit is contained in:
parent
35af389158
commit
1898815955
4 changed files with 54 additions and 34 deletions
20
outputs/pkgs/project-plus/fpp-sd.nix
Normal file
20
outputs/pkgs/project-plus/fpp-sd.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
stdenv,
|
||||
fetchzip,
|
||||
}: let
|
||||
version = "3.0.5";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "fpp-sdcard";
|
||||
inherit version;
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/jlambert360/FPM-AppImage/releases/download/v${version}/sd.tar.gz";
|
||||
sha256 = "sha256-9QrfAxY62x5RlELOUey+zfVzP3xuDB/sRe/0rVevV6A";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out
|
||||
cp sd.raw $out
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue