nixpkgs/pkgs/applications/misc/tuhi/default.nix

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

65 lines
1.3 KiB
Nix
Raw Normal View History

2022-01-03 17:31:36 +00:00
{ lib
, pkg-config
, python3Packages
, meson
, ninja
, appstream-glib
, desktop-file-utils
, glib
, gtk3
, gobject-introspection
, wrapGAppsHook
, fetchFromGitHub
}:
python3Packages.buildPythonApplication rec {
2022-03-07 11:37:20 +00:00
pname = "tuhi";
2022-07-14 06:52:23 +00:00
version = "0.6";
2022-01-03 17:31:36 +00:00
format = "other";
src = fetchFromGitHub {
owner = "tuhiproject";
2022-03-07 11:37:20 +00:00
repo = "tuhi";
rev = version;
2022-07-14 06:52:23 +00:00
sha256 = "sha256-NwyG2KhOrAKRewgmU23OMO0+A9SjkQZsDL4SGnLVCvo=";
2022-01-03 17:31:36 +00:00
};
dontWrapGApps = true;
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
nativeBuildInputs = [
pkg-config meson ninja
appstream-glib desktop-file-utils
wrapGAppsHook
gobject-introspection
2022-01-03 17:31:36 +00:00
];
buildInputs = [
gtk3
2022-01-03 17:31:36 +00:00
glib
];
nativeCheckInputs = with python3Packages; [ flake8 pytest ];
2022-01-03 17:31:36 +00:00
propagatedBuildInputs = with python3Packages; [
svgwrite pyxdg pycairo pygobject3 setuptools-scm
];
strictDeps = false;
preConfigure = ''
substituteInPlace meson_install.sh \
--replace "/usr/bin/env sh" "sh"
'';
postFixup = ''
wrapPythonProgramsIn $out/libexec "$out $pythonPath"
'';
meta = with lib; {
description = "DBus daemon to access Wacom SmartPad devices";
homepage = "https://github.com/tuhiproject/tuhi";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ lammermann ];
};
}