about 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-10 15:59:54 -0300
committerAndersonTorres <torres.anderson.85@gmail.com>2014-09-10 21:34:50 -0300
commitb39e5ce957175d939a8f4d20bca406d8880dc1af (patch)
tree5d7d00cd28d24c66237c9a6867639ccb4c9243d3 /pkgs/applications/window-managers
parentff1b7aa33298ceae8e604fc89c8276f8c8ed62de (diff)
downloadnixlib-b39e5ce957175d939a8f4d20bca406d8880dc1af.tar
nixlib-b39e5ce957175d939a8f4d20bca406d8880dc1af.tar.gz
nixlib-b39e5ce957175d939a8f4d20bca406d8880dc1af.tar.bz2
nixlib-b39e5ce957175d939a8f4d20bca406d8880dc1af.tar.lz
nixlib-b39e5ce957175d939a8f4d20bca406d8880dc1af.tar.xz
nixlib-b39e5ce957175d939a8f4d20bca406d8880dc1af.tar.zst
nixlib-b39e5ce957175d939a8f4d20bca406d8880dc1af.zip
Small style fixups
In this commit, I modified some files, conforming them to a
idiosyncratic standard - mainly, a template for meta attribs.
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/fluxbox/default.nix19
1 files changed, 10 insertions, 9 deletions
diff --git a/pkgs/applications/window-managers/fluxbox/default.nix b/pkgs/applications/window-managers/fluxbox/default.nix
index af6545b61515..b46864b9c2e4 100644
--- a/pkgs/applications/window-managers/fluxbox/default.nix
+++ b/pkgs/applications/window-managers/fluxbox/default.nix
@@ -2,8 +2,7 @@
 , freetype, fribidi
 , libXext, libXft, libXpm, libXrandr, libXrender, xextproto
 , libXinerama
-, imlib2
-}:
+, imlib2 }:
 
 stdenv.mkDerivation rec {
 
@@ -17,17 +16,19 @@ stdenv.mkDerivation rec {
     sha256 = "164dd7bf59791d09a1e729a4fcd5e7347a1004ba675629860a5cf1a271c32983";
   };
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Full-featured, light-resource X window manager";
     longDescription = ''
-      Fluxbox is a X window manager based on Blackbox 0.61.1 window manager sources.
-      It is very light on resources and easy to handle but yet full of features to make an easy,
-      and extremely fast, desktop experience. It is written in C++ and licensed under MIT license.
+      Fluxbox is a X window manager based on Blackbox 0.61.1 window
+      manager sources.  It is very light on resources and easy to
+      handle but yet full of features to make an easy, and extremely
+      fast, desktop experience. It is written in C++ and licensed
+      under MIT license.
     '';
     homepage = http://fluxbox.org/;
-    license = stdenv.lib.licenses.mit;
-    maintainers = [ stdenv.lib.maintainers.AndersonTorres ];
-    platforms = stdenv.lib.platforms.linux;
+    license = licenses.mit;
+    maintainers = [ maintainers.AndersonTorres ];
+    platforms = platforms.linux;
   };
 }
 # Many thanks Jack Ryan from Nix-dev mailing list!