Files
nixpkgs/pkgs/by-name/tu/tuhi/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

77 lines
1.4 KiB
Nix

{
lib,
pkg-config,
python3Packages,
meson,
ninja,
appstream-glib,
desktop-file-utils,
glib,
gtk3,
gobject-introspection,
wrapGAppsHook3,
fetchFromGitHub,
}:
python3Packages.buildPythonApplication rec {
pname = "tuhi";
version = "0.6";
format = "other";
src = fetchFromGitHub {
owner = "tuhiproject";
repo = "tuhi";
rev = version;
sha256 = "sha256-NwyG2KhOrAKRewgmU23OMO0+A9SjkQZsDL4SGnLVCvo=";
};
dontWrapGApps = true;
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
nativeBuildInputs = [
pkg-config
meson
ninja
appstream-glib
desktop-file-utils
wrapGAppsHook3
gobject-introspection
];
buildInputs = [
gtk3
glib
];
nativeCheckInputs = with python3Packages; [
flake8
pytest
];
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";
mainProgram = "tuhi";
homepage = "https://github.com/tuhiproject/tuhi";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ lammermann ];
};
}