updated flake inputs, deleted panda3ds overlay pkg

This commit is contained in:
2024-11-15 20:21:20 -05:00
parent 8aaa441bb2
commit a6e8607689
3 changed files with 10 additions and 43 deletions

View File

@@ -4,6 +4,5 @@ self: super: {
tinyfetch = super.callPackage ./tinyfetch/package.nix {};
breezex-cursor = super.callPackage ./breezex-cursor/package.nix {};
check_updates = super.callPackage ./check_updates/package.nix {};
panda3ds = super.callPackage ./panda3ds/package.nix {};
};
}

View File

@@ -1,32 +0,0 @@
{
stdenvNoCC,
fetchzip,
autoPatchelfHook,
lib
}:
stdenvNoCC.mkDerivation rec {
pname = "panda3ds-qt";
version = "0.8";
src = fetchzip {
url = "https://github.com/wheremyfoodat/Panda3DS/releases/download/v${version}/Linux-Qt.zip";
sha256 = "1629yaa4xf7di0lmb5jwdggwpsrxcnlcj122px6qyvkmg8fa5q7m";
};
nativeBuildInputs = [ autoPatchelfHook ];
installPhase = ''
runHook preInstall
install -Dm755 Alber-x86_64.AppImage $out/bin
runHook postInstall
'';
meta = {
description = "";
homepage = "";
mainProgram = "";
maintainers = "";
platforms = lib.platforms.linux;
};
}