packages: project-plus; remove User config

This commit is contained in:
ooks-io 2025-01-10 21:50:38 +11:00
parent 35af389158
commit 1898815955
4 changed files with 54 additions and 34 deletions

View file

@ -0,0 +1,19 @@
{
stdenv,
fetchzip,
}:
stdenv.mkDerivation {
name = "fpp-config";
version = "2.28";
archiveName = "fppconfig.tar.gz";
src = fetchzip {
url = "https://github.com/jlambert360/FPM-AppImage/raw/refs/heads/master/config/fppconfig.tar.gz";
sha256 = "sha256-1+dQkNuZi2LXqmUuYJHI6RYuFUmI2wzVb4D2SYdZt1Y=";
};
installPhase = ''
mkdir -p $out/Binaries
cp -rf . $out/Binaries
'';
}