This commit is contained in:
mjallen18
2026-01-02 09:47:20 -06:00
parent cdf388cf17
commit 8fc40f265b
3 changed files with 19 additions and 16 deletions

View File

@@ -22,9 +22,9 @@ stdenvNoCC.mkDerivation rec {
installPhase = ''
runHook preInstall
mkdir -p "$out/firmware"
mkdir -p "$out"
cp -rv "${src}" "$out/firmware"
cp -rv "${src}/." "$out"
runHook postInstall
'';
@@ -35,4 +35,4 @@ stdenvNoCC.mkDerivation rec {
platforms = platforms.linux;
maintainers = with maintainers; [ ];
};
}
}