summary refs log tree commit diff
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2016-02-27 00:00:01 +0000
committerzimbatm <zimbatm@zimbatm.com>2016-02-27 00:00:01 +0000
commit2f38c1be697bfbf982e609fe785b2ec3228ac5f4 (patch)
treeb62c1088070c48e56abac8b48784129709bfb973
parent766ad682f146a755b460dd87006912a96d915bcd (diff)
parentfb9a2f6c12f87e77305f96ce6c93d5d2b721fcc7 (diff)
downloadnixpkgs-2f38c1be697bfbf982e609fe785b2ec3228ac5f4.tar
nixpkgs-2f38c1be697bfbf982e609fe785b2ec3228ac5f4.tar.gz
nixpkgs-2f38c1be697bfbf982e609fe785b2ec3228ac5f4.tar.bz2
nixpkgs-2f38c1be697bfbf982e609fe785b2ec3228ac5f4.tar.lz
nixpkgs-2f38c1be697bfbf982e609fe785b2ec3228ac5f4.tar.xz
nixpkgs-2f38c1be697bfbf982e609fe785b2ec3228ac5f4.tar.zst
nixpkgs-2f38c1be697bfbf982e609fe785b2ec3228ac5f4.zip
Merge pull request #11142 from cresh/darwin-sshpass
sshpass: Enable on OS X.
-rw-r--r--pkgs/tools/networking/sshpass/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/sshpass/default.nix b/pkgs/tools/networking/sshpass/default.nix
index 3a8e106155f..95212b00beb 100644
--- a/pkgs/tools/networking/sshpass/default.nix
+++ b/pkgs/tools/networking/sshpass/default.nix
@@ -13,6 +13,6 @@ stdenv.mkDerivation rec {
     homepage = http://sourceforge.net/projects/sshpass/;
     description = "Non-interactive ssh password auth";
     maintainers = [ stdenv.lib.maintainers.madjar ];
-    platforms = stdenv.lib.platforms.linux;
+    platforms = stdenv.lib.platforms.unix;
   };
 }