summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2018-09-10 21:43:07 +0200
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-09-10 22:16:21 +0200
commit44d84db9409de4215d53fd7912b7eb6d9c1b9a40 (patch)
tree992caabbef345cdf7c77befda3867b3dc32a4ed1
parentd2b062760dc390ee02a2a311e762fef0a88d6885 (diff)
downloadnixpkgs-44d84db9409de4215d53fd7912b7eb6d9c1b9a40.tar
nixpkgs-44d84db9409de4215d53fd7912b7eb6d9c1b9a40.tar.gz
nixpkgs-44d84db9409de4215d53fd7912b7eb6d9c1b9a40.tar.bz2
nixpkgs-44d84db9409de4215d53fd7912b7eb6d9c1b9a40.tar.lz
nixpkgs-44d84db9409de4215d53fd7912b7eb6d9c1b9a40.tar.xz
nixpkgs-44d84db9409de4215d53fd7912b7eb6d9c1b9a40.tar.zst
nixpkgs-44d84db9409de4215d53fd7912b7eb6d9c1b9a40.zip
polysh: add license
-rw-r--r--pkgs/tools/networking/polysh/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/networking/polysh/default.nix b/pkgs/tools/networking/polysh/default.nix
index b94ec8e429f..2a70218f287 100644
--- a/pkgs/tools/networking/polysh/default.nix
+++ b/pkgs/tools/networking/polysh/default.nix
@@ -11,14 +11,15 @@ buildPythonApplication rec {
           sha256 = "0kxhp38c8a8hc8l86y53l2z5zpzxc4b8lx5zyzmq1badcrfc4mh4";
         };
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "A tool to aggregate several remote shells into one";
     longDescription = ''
       Polysh is a tool to aggregate several remote shells into one. It
       is used to launch an interactive remote shell on many machines
       at once.
     '';
-    maintainers = with stdenv.lib.maintainers; [ astsmtl ];
+    maintainers = [ maintainers.astsmtl ];
     homepage = http://guichaz.free.fr/polysh/;
+    license = licenses.gpl2;
   };
 }