summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-05-28 19:20:29 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-05-28 19:20:29 +0200
commit158e1cfdd0ddb8380e266dcf16a4167455335bc3 (patch)
tree1437b0590a546a7900c83518efa96dfc4e2e310a /pkgs/applications/window-managers
parent831d597bfab70bf2952f9573b2cacc9d1c56de1c (diff)
downloadnixlib-158e1cfdd0ddb8380e266dcf16a4167455335bc3.tar
nixlib-158e1cfdd0ddb8380e266dcf16a4167455335bc3.tar.gz
nixlib-158e1cfdd0ddb8380e266dcf16a4167455335bc3.tar.bz2
nixlib-158e1cfdd0ddb8380e266dcf16a4167455335bc3.tar.lz
nixlib-158e1cfdd0ddb8380e266dcf16a4167455335bc3.tar.xz
nixlib-158e1cfdd0ddb8380e266dcf16a4167455335bc3.tar.zst
nixlib-158e1cfdd0ddb8380e266dcf16a4167455335bc3.zip
Don't use "with licenses;" for single licences
And don't use square brackets on such lines.
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/awesome/default.nix2
-rw-r--r--pkgs/applications/window-managers/tabbed/default.nix2
-rw-r--r--pkgs/applications/window-managers/vwm/default.nix2
3 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/window-managers/awesome/default.nix b/pkgs/applications/window-managers/awesome/default.nix
index a158dd8dcf45..c57a89193b5e 100644
--- a/pkgs/applications/window-managers/awesome/default.nix
+++ b/pkgs/applications/window-managers/awesome/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "Highly configurable, dynamic window manager for X";
     homepage    = http://awesome.naquadah.org/;
-    license     = with licenses; gpl2Plus;
+    license     = licenses.gpl2Plus;
     maintainers = with maintainers; [ lovek323 ];
     platforms   = platforms.linux;
   };
diff --git a/pkgs/applications/window-managers/tabbed/default.nix b/pkgs/applications/window-managers/tabbed/default.nix
index 82539b940b8c..4e6c9c9a83e6 100644
--- a/pkgs/applications/window-managers/tabbed/default.nix
+++ b/pkgs/applications/window-managers/tabbed/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     homepage = http://tools.suckless.org/tabbed;
     description = "Simple generic tabbed fronted to xembed aware applications";
-    license = with licenses; mit;
+    license = licenses.mit;
     maintainers = with maintainers; [ viric ];
     platforms = with platforms; linux;
   };
diff --git a/pkgs/applications/window-managers/vwm/default.nix b/pkgs/applications/window-managers/vwm/default.nix
index be0a946064b6..1e6b53446aa4 100644
--- a/pkgs/applications/window-managers/vwm/default.nix
+++ b/pkgs/applications/window-managers/vwm/default.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     homepage = http://vwm.sourceforge.net/;
     description = "Dynamic window manager for the console";
-    license = with licenses; gpl2Plus;
+    license = licenses.gpl2Plus;
     maintainers = with maintainers; [ viric ];
     platforms = with platforms; linux;
   };