Fix #56, open button not working

This commit is contained in:
Tobias Bora 2024-01-14 17:06:13 +01:00
parent 68e87fb6e2
commit 8c4cf5bc82

View File

@ -60,6 +60,10 @@ pkgs.stdenv.mkDerivation rec {
'';
postInstall = ''
wrapProgram $out/bin/nix-software-center --prefix PATH : '${lib.makeBinPath [ pkgs.gnome-console pkgs.sqlite ]}'
wrapProgram $out/bin/nix-software-center --prefix PATH : '${lib.makeBinPath [
pkgs.gnome-console
pkgs.gtk3 # provides gtk-launch
pkgs.sqlite
]}'
'';
}