3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #31793 from romildo/new.lxtask

lxtask: init at 0.1.8
This commit is contained in:
Pascal Wittmann 2017-11-18 14:06:35 +01:00 committed by GitHub
commit c1dd363a3d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ stdenv, fetchurl, pkgconfig, intltool, gtk3 }:
stdenv.mkDerivation rec {
name = "lxtask-${version}";
version = "0.1.8";
src = fetchurl {
url = "mirror://sourceforge/lxde/${name}.tar.xz";
sha256 = "0h7g1fdngv939z1d05nzs86dplww5a3bpm0isxd7p1bjby047d6z";
};
nativeBuildInputs = [ pkgconfig intltool ];
buildInputs = [ gtk3 ];
configureFlags = [ "--enable-gtk3" ];
meta = {
description = "Lightweight and desktop independent task manager";
longDescription = ''
LXTask is a lightweight task manager derived from xfce4 task manager
with all xfce4 dependencies removed, some bugs fixed, and some
improvement of UI. Although being part of LXDE, the Lightweight X11
Desktop Environment, it's totally desktop independent and only
requires pure gtk+.
'';
homepage = https://wiki.lxde.org/en/LXTask;
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.romildo ];
};
}

View file

@ -6485,6 +6485,8 @@ with pkgs;
gtk2 = gtk2-x11;
};
lxtask = callPackage ../desktops/lxde/core/lxtask { };
kona = callPackage ../development/interpreters/kona {};
lolcode = callPackage ../development/interpreters/lolcode { };