summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@gmail.com>2014-09-13 15:21:56 -0300
committerMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-09-20 23:36:07 +0100
commitc6f28f988c930329db62cd3054c206d515b2ecb3 (patch)
tree2e17b9d7d7b0d20e51ca470be48efbcb9c483818 /pkgs/applications/window-managers
parent4d5336316caedbb8033646b3a69811f3f4c0fc29 (diff)
downloadnixpkgs-c6f28f988c930329db62cd3054c206d515b2ecb3.tar
nixpkgs-c6f28f988c930329db62cd3054c206d515b2ecb3.tar.gz
nixpkgs-c6f28f988c930329db62cd3054c206d515b2ecb3.tar.bz2
nixpkgs-c6f28f988c930329db62cd3054c206d515b2ecb3.tar.lz
nixpkgs-c6f28f988c930329db62cd3054c206d515b2ecb3.tar.xz
nixpkgs-c6f28f988c930329db62cd3054c206d515b2ecb3.tar.zst
nixpkgs-c6f28f988c930329db62cd3054c206d515b2ecb3.zip
Windowmaker: adding system service file, and a long description
Closes #4066
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/windowmaker/default.nix19
1 files changed, 14 insertions, 5 deletions
diff --git a/pkgs/applications/window-managers/windowmaker/default.nix b/pkgs/applications/window-managers/windowmaker/default.nix
index bbb6c038825..190319db720 100644
--- a/pkgs/applications/window-managers/windowmaker/default.nix
+++ b/pkgs/applications/window-managers/windowmaker/default.nix
@@ -3,18 +3,27 @@
 stdenv.mkDerivation rec {
   name = "windowmaker-${version}";
   version = "0.95.5";
+  srcName = "WindowMaker-${version}";
 
   src = fetchurl {
-    url = "http://windowmaker.org/pub/source/release/"
-        + "WindowMaker-${version}.tar.gz";
+    url = "http://windowmaker.org/pub/source/release/${srcName}.tar.gz";
     sha256 = "1l3hmx4jzf6vp0zclqx9gsqrlwh4rvqm1g1zr5ha0cp0zmsg89ab";
   };
 
   buildInputs = [ pkgconfig libX11 libXft libXmu ];
 
-  meta = {
-    homepage = "http://windowmaker.org/";
+  meta = with stdenv.lib; {
+    homepage = http://windowmaker.org/;
     description = "NeXTSTEP-like window manager";
-    license = stdenv.lib.licenses.gpl2Plus;
+    longDescription = ''
+      Window Maker is an X11 window manager originally designed to
+      provide integration support for the GNUstep Desktop
+      Environment. In every way possible, it reproduces the elegant look
+      and feel of the NEXTSTEP user interface. It is fast, feature rich,
+      easy to configure, and easy to use. It is also free software, with
+      contributions being made by programmers from around the world.
+    '';
+    license = licenses.gpl2Plus;
+    maintainers = [ maintainers.AndersonTorres ];
   };
 }