mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
f2a20b6e52
Replace "waf" phases with wafHook that manages everything automatically. Should make things more modular. Packages affected here are: - a2jmidid - ams-lv2 - ardour - fomp - guitarix - ingen - jalv - mda-lv2 - non - patchage - hamster-time-tracker - kupfer - xiphos - xfce4-dockbarx-plugin - xfce4-namebar-plugin - dropbox - clasp - aubio - liliv - lv2 - lvtk - ntk - raul - sratom - suil - ganv - ndn-cxx - ns3 - serd - sord - termbox - wxmupen64plus - jackaudio - pflask - blockhash - glmark2 - weighttp
43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
{ stdenv, fetchzip, pythonPackages, docbook2x, libxslt, gnome-doc-utils
|
|
, intltool, dbus-glib, gnome_python
|
|
, hicolor-icon-theme
|
|
, wafHook
|
|
}:
|
|
|
|
# TODO: Add optional dependency 'wnck', for "workspace tracking" support. Fixes
|
|
# this message:
|
|
#
|
|
# WARNING:root:Could not import wnck - workspace tracking will be disabled
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "hamster-time-tracker-1.04";
|
|
|
|
src = fetchzip {
|
|
name = "${name}-src";
|
|
url = "https://github.com/projecthamster/hamster/archive/${name}.tar.gz";
|
|
sha256 = "1a85rcg561792kdyv744cgzw7mmpmgv6d6li1sijfdpqa1ninf8g";
|
|
};
|
|
|
|
nativeBuildInputs = [ wafHook ];
|
|
buildInputs = [
|
|
docbook2x libxslt gnome-doc-utils intltool dbus-glib hicolor-icon-theme
|
|
];
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ pygobject2 pygtk pyxdg gnome_python dbus-python ];
|
|
|
|
postFixup = ''
|
|
wrapPythonProgramsIn $out/lib/hamster-time-tracker "$out $pythonPath"
|
|
'';
|
|
|
|
# error: invalid command 'test'
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Time tracking application";
|
|
homepage = https://projecthamster.wordpress.com/;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|