summary refs log tree commit diff
path: root/pkgs/tools/networking/maildrop
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/tools/networking/maildrop
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/tools/networking/maildrop')
-rw-r--r--pkgs/tools/networking/maildrop/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/maildrop/default.nix b/pkgs/tools/networking/maildrop/default.nix
index cf9c3a4fa4e0..fad99bbd7d7f 100644
--- a/pkgs/tools/networking/maildrop/default.nix
+++ b/pkgs/tools/networking/maildrop/default.nix
@@ -15,6 +15,6 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     homepage = http://www.courier-mta.org/maildrop/;
     description = "Mail filter/mail delivery agent that is used by the Courier Mail Server";
-    license = with licenses; gpl3;
+    license = licenses.gpl3;
   };
 }