forked from mirrors/nixpkgs
lxtask: init at 0.1.8
This commit is contained in:
parent
59add31f2f
commit
e8712da846
32
pkgs/desktops/lxde/core/lxtask/default.nix
Normal file
32
pkgs/desktops/lxde/core/lxtask/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -6485,6 +6485,8 @@ with pkgs;
|
||||||
gtk2 = gtk2-x11;
|
gtk2 = gtk2-x11;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
lxtask = callPackage ../desktops/lxde/core/lxtask { };
|
||||||
|
|
||||||
kona = callPackage ../development/interpreters/kona {};
|
kona = callPackage ../development/interpreters/kona {};
|
||||||
|
|
||||||
lolcode = callPackage ../development/interpreters/lolcode { };
|
lolcode = callPackage ../development/interpreters/lolcode { };
|
||||||
|
|
Loading…
Reference in a new issue