mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
64 lines
1.3 KiB
Nix
64 lines
1.3 KiB
Nix
{ lib
|
|
, pkg-config
|
|
, python3Packages
|
|
, meson
|
|
, ninja
|
|
, appstream-glib
|
|
, desktop-file-utils
|
|
, glib
|
|
, gtk3
|
|
, gobject-introspection
|
|
, wrapGAppsHook
|
|
, 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
|
|
wrapGAppsHook
|
|
];
|
|
buildInputs = [
|
|
gtk3 gobject-introspection
|
|
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";
|
|
homepage = "https://github.com/tuhiproject/tuhi";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ lammermann ];
|
|
};
|
|
}
|