Skip to content

Commit

Permalink
quickgui: add quickemu to PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
heyimnova committed Nov 21, 2023
1 parent d4cd00c commit 585cbc4
Showing 1 changed file with 27 additions and 8 deletions.
35 changes: 27 additions & 8 deletions pkgs/applications/virtualization/quickgui/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{ stdenv
{ stdenvNoCC
, lib
, fetchurl
, autoPatchelfHook
, dpkg
, wrapGAppsHook
, quickemu
, gnome
}:

stdenv.mkDerivation rec {
stdenvNoCC.mkDerivation rec {
pname = "quickgui";
version = "1.2.8";

Expand All @@ -18,31 +20,48 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
autoPatchelfHook
dpkg
wrapGAppsHook
];

buildInputs = [
wrapGAppsHook
quickemu
gnome.zenity
];

strictDeps = true;

unpackCmd = "dpkg-deb -x $curSrc source";

installPhase = ''
runHook preInstall
mv usr $out
runHook postInstall
'';

preFixup = ''
gappsWrapperArgs+=(
--prefix PATH : ${lib.makeBinPath [ quickemu gnome.zenity ]}
)
'';

postFixup = ''
substituteInPlace $out/share/applications/quickgui.desktop \
--replace "/usr" $out
runHook postInstall
# quickgui PR 88
echo "Categories=System;" >> $out/share/applications/quickgui.desktop
'';

meta = {
meta = with lib; {
description = "A Flutter frontend for quickemu";
homepage = "https://github.com/quickemu-project/quickgui";
changelog = "https://github.com/quickemu-project/quickgui/releases/tag/v${version}";
maintainers = [ lib.maintainers.heyimnova ];
platforms = lib.platforms.linux;
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
license = licenses.mit;
maintainers = with maintainers; [ heyimnova ];
platforms = [ "x86_64-linux" ];
sourceProvenance = [ sourceTypes.binaryNativeCode ];
mainProgram = "quickgui";
};
}

0 comments on commit 585cbc4

Please sign in to comment.