From f43d9f01648fb2362a85b348fdeb96b772cf71b7 Mon Sep 17 00:00:00 2001
From: Eelco Dolstra <eelco.dolstra@logicblox.com>
Date: Wed, 21 May 2014 12:46:39 +0200
Subject: [PATCH] mkpasswd: Add to channel

---
 pkgs/tools/security/mkpasswd/default.nix | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/pkgs/tools/security/mkpasswd/default.nix b/pkgs/tools/security/mkpasswd/default.nix
index 1df8c1a62d2b..8975ca4324d1 100644
--- a/pkgs/tools/security/mkpasswd/default.nix
+++ b/pkgs/tools/security/mkpasswd/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchFromGitHub }:
-  
+
 stdenv.mkDerivation rec {
   name = "mkpasswd-${version}";
 
@@ -22,10 +22,9 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     homepage = http://packages.qa.debian.org/w/whois.html;
-    description = ''
-      Overfeatured front end to crypt, from the Debian whois package
-    '';
-    license     = licenses.gpl2;
-    maintainers = with maintainers; [ cstrahan ];
+    description = "Overfeatured front-end to crypt, from the Debian whois package";
+    license = licenses.gpl2;
+    maintainers = [ maintainers.cstrahan ];
+    platforms = platforms.linux;
   };
 }