nixpkgs/pkgs/applications/emulators/cdemu/gui.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
706 B
Nix
Raw Normal View History

2024-05-15 13:12:49 +00:00
{ callPackage, cmake, pkg-config, wrapGAppsHook3, gobject-introspection
, python3Packages, libnotify, intltool, gnome, gdk-pixbuf }:
python3Packages.buildPythonApplication {
inherit (callPackage ./common-drv-attrs.nix {
version = "3.2.6";
pname = "gcdemu";
hash = "sha256-w4vzKoSotL5Cjfr4Cu4YhNSWXJqS+n/vySrwvbhR1zA=";
}) pname version src meta;
2024-05-15 13:12:49 +00:00
nativeBuildInputs = [ cmake pkg-config wrapGAppsHook3 intltool gobject-introspection ];
buildInputs = [ libnotify gnome.adwaita-icon-theme gdk-pixbuf ];
propagatedBuildInputs = with python3Packages; [ pygobject3 ];
2024-05-15 13:12:49 +00:00
pyproject = false;
dontWrapGApps = true;
2024-05-15 13:12:49 +00:00
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
2015-02-10 01:27:04 +00:00
}