aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/window-managers/pekwm
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@gmail.com>2016-07-03 17:09:12 -0300
committerAndersonTorres <torres.anderson.85@gmail.com>2016-07-09 22:26:24 -0300
commit0f6c79d561f45a58d4e278a4cf969dc5f657045a (patch)
tree5abf336a9410a7e8369ea4d85dce90f87c8af736 /pkgs/applications/window-managers/pekwm
parent931706cdc129dc27a2948114de9f8aaa2c12d33f (diff)
pekwm: init at 0.1.17
Diffstat (limited to 'pkgs/applications/window-managers/pekwm')
-rw-r--r--pkgs/applications/window-managers/pekwm/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/applications/window-managers/pekwm/default.nix b/pkgs/applications/window-managers/pekwm/default.nix
new file mode 100644
index 000000000000..60753e468408
--- /dev/null
+++ b/pkgs/applications/window-managers/pekwm/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, fetchurl, pkgconfig
+, libpng, libjpeg
+, libXext, libXft, libXpm, libXrandr, libXinerama }:
+
+stdenv.mkDerivation rec {
+
+ name = "pekwm-${version}";
+ version = "0.1.17";
+
+ src = fetchurl {
+ url = "https://www.pekwm.org/projects/pekwm/files/${name}.tar.bz2";
+ sha256 = "003x6bxj1lb2ljxz3v414bn0rdl6z68c0r185fxwgs1qkyzx67wa";
+ };
+
+ buildInputs = [ pkgconfig libpng libjpeg
+ libXext libXft libXpm libXrandr libXinerama ];
+
+ meta = with stdenv.lib; {
+ description = "A lightweight window manager";
+ longDescription = ''
+ pekwm is a window manager that once upon a time was based on the
+ aewm++ window manager, but it has evolved enough that it no
+ longer resembles aewm++ at all. It has a much expanded
+ feature-set, including window grouping (similar to ion, pwm, or
+ fluxbox), autoproperties, xinerama, keygrabber that supports
+ keychains, and much more.
+ - Lightweight and Unobtrusive, a window manager shouldn't be
+ noticed.
+ - Very configurable, we all work and think in different ways.
+ - Automatic properties, for all the lazy people, make things
+ appear as they should when starting applications.
+ - Chainable Keygrabber, usability for everyone.
+ '';
+ homepage = https://www.pekwm.org;
+ license = licenses.gpl2;
+ maintainers = [ maintainers.AndersonTorres ];
+ platforms = platforms.linux;
+ };
+}