summary refs log tree commit diff
diff options
context:
space:
mode:
authorDhananjay Balan <dhananjay@cliqz.com>2016-12-28 16:41:29 +0100
committerGraham Christensen <graham@grahamc.com>2016-12-28 21:03:22 -0500
commitd6254e0bbd87f025cd13f684664a642021a531e4 (patch)
tree1681f53d0d94d9c9d06d56dafe6a0c32f331b9c4
parentbc63738c6f5fa0e8da611a1035cea251f99c13fc (diff)
downloadnixpkgs-d6254e0bbd87f025cd13f684664a642021a531e4.tar
nixpkgs-d6254e0bbd87f025cd13f684664a642021a531e4.tar.gz
nixpkgs-d6254e0bbd87f025cd13f684664a642021a531e4.tar.bz2
nixpkgs-d6254e0bbd87f025cd13f684664a642021a531e4.tar.lz
nixpkgs-d6254e0bbd87f025cd13f684664a642021a531e4.tar.xz
nixpkgs-d6254e0bbd87f025cd13f684664a642021a531e4.tar.zst
nixpkgs-d6254e0bbd87f025cd13f684664a642021a531e4.zip
shellinabox: 2.19 -> 2.20
should fix shellinabox vulnarabilities from https://github.com/NixOS/nixpkgs/issues/21457
-rw-r--r--pkgs/servers/shellinabox/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/shellinabox/default.nix b/pkgs/servers/shellinabox/default.nix
index c9f4e2d253f..cad349c4b51 100644
--- a/pkgs/servers/shellinabox/default.nix
+++ b/pkgs/servers/shellinabox/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchFromGitHub, autoreconfHook, pam, openssl, openssh, shadow, makeWrapper }:
 
 stdenv.mkDerivation rec {
-  version = "2.19";
+  version = "2.20";
   name = "shellinabox-${version}";
 
   src = fetchFromGitHub {
     owner = "shellinabox";
     repo = "shellinabox";
-    rev = "1a8010f2c94a62e7398c4fa130dfe9e099dc55cd";
-    sha256 = "16cr7gbnh6vzsxlhg9j9avqrxbhbkqhsbvh197b0ccdwbb04ysan";
+    rev = "v${version}";
+    sha256 = "1hmfayh21cks2lyj572944ll0mmgsxbnj981b3hq3nhdg8ywzjfr";
   };
 
   patches = [ ./shellinabox-minus.patch ];