mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +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.
64 lines
1.3 KiB
Nix
64 lines
1.3 KiB
Nix
{ lib, fetchFromGitHub, python3Packages, intltool, glib, itstool, gtk3
|
|
, wrapGAppsHook3, gobject-introspection, pango, gdk-pixbuf, atk, wafHook }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "hamster";
|
|
version = "3.0.3";
|
|
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "projecthamster";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-cUmUvJP9Y3de5OaNgIxvigDsX2ww7NNRY5son/gg+WI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
python3Packages.setuptools
|
|
wrapGAppsHook3
|
|
intltool
|
|
itstool
|
|
wafHook
|
|
glib
|
|
gobject-introspection
|
|
];
|
|
|
|
buildInputs = [
|
|
pango
|
|
gdk-pixbuf
|
|
atk
|
|
gtk3
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
pygobject3
|
|
pycairo
|
|
pyxdg
|
|
setuptools
|
|
dbus-python
|
|
];
|
|
|
|
PYTHONDIR = "${placeholder "out"}/${python3Packages.python.sitePackages}";
|
|
|
|
dontWrapGApps = true;
|
|
|
|
# Arguments to be passed to `makeWrapper`, only used by buildPython*
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapPythonProgramsIn $out/libexec "$out $pythonPath"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Time tracking application";
|
|
mainProgram = "hamster";
|
|
homepage = "http://projecthamster.org/";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.fabianhauser ];
|
|
};
|
|
}
|