mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-20 03:43:45 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
66 lines
1.4 KiB
Nix
66 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 ];
|
|
};
|
|
}
|