{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / desktops / lxde / core / lxtask / default.nix
blobb29581dfe5fa4c19fc2211078b194de8c8c80551
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , autoreconfHook
5 , gtk3
6 , intltool
7 , libintl
8 , pkg-config
9 , gitUpdater
12 stdenv.mkDerivation rec {
13   pname = "lxtask";
14   version = "0.1.11";
16   src = fetchFromGitHub {
17     owner = "lxde";
18     repo = "lxtask";
19     rev = version;
20     hash = "sha256-KPne7eWzOOSZjHlam3e6HifNk2Sx1vWnQYkXDFZGop0=";
21   };
23   nativeBuildInputs = [
24     autoreconfHook
25     intltool
26     pkg-config
27   ];
29   buildInputs = [
30     gtk3
31     libintl
32   ];
34   configureFlags = [ "--enable-gtk3" ];
36   passthru.updateScript = gitUpdater { };
38   meta = with lib; {
39     homepage = "http://lxde.sourceforge.net/";
40     description = "Lightweight and desktop independent task manager";
41     mainProgram = "lxtask";
42     longDescription = ''
43       LXTask is a lightweight task manager derived from xfce4 task manager
44       with all xfce4 dependencies removed, some bugs fixed, and some
45       improvement of UI. Although being part of LXDE, the Lightweight X11
46       Desktop Environment, it's totally desktop independent and only
47       requires pure GTK.
48     '';
49     license = licenses.gpl2Plus;
50     platforms = platforms.unix;
51     maintainers = [ maintainers.romildo ];
52   };