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

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

20 lines
634 B
Nix
Raw Normal View History

2024-05-15 13:12:49 +00:00
{ callPackage, python3Packages, cmake, pkg-config, intltool, wrapGAppsNoGuiHook, gobject-introspection }:
python3Packages.buildPythonApplication {
inherit (callPackage ./common-drv-attrs.nix {
version = "3.2.5";
pname = "cdemu-client";
hash = "sha256-py2F61v8vO0BCM18GCflAiD48deZjbMM6wqoCDZsOd8=";
}) pname version src meta;
2024-05-15 13:12:49 +00:00
nativeBuildInputs = [ cmake pkg-config intltool wrapGAppsNoGuiHook gobject-introspection ];
propagatedBuildInputs = with python3Packages; [ dbus-python 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
}