summary refs log tree commit diff
path: root/pkgs/os-specific/linux/cifs-utils
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-03-05 12:14:00 +0100
committerPeter Simons <simons@cryp.to>2013-03-05 12:14:00 +0100
commitad31fcad528fe6bf501195c74bdbe46420dbfb58 (patch)
tree438fed6b39842a5c714f70199101041318251cea /pkgs/os-specific/linux/cifs-utils
parent7e99044638c639016d811708f5992f58de82807f (diff)
downloadnixpkgs-ad31fcad528fe6bf501195c74bdbe46420dbfb58.tar
nixpkgs-ad31fcad528fe6bf501195c74bdbe46420dbfb58.tar.gz
nixpkgs-ad31fcad528fe6bf501195c74bdbe46420dbfb58.tar.bz2
nixpkgs-ad31fcad528fe6bf501195c74bdbe46420dbfb58.tar.lz
nixpkgs-ad31fcad528fe6bf501195c74bdbe46420dbfb58.tar.xz
nixpkgs-ad31fcad528fe6bf501195c74bdbe46420dbfb58.tar.zst
nixpkgs-ad31fcad528fe6bf501195c74bdbe46420dbfb58.zip
cifs-utils: revert back to version 5.6
The updated version 5.9 couldn't mount any of my shares:

  Status code returned 0xc000006d NT_STATUS_LOGON_FAILURE
  CIFS VFS: Send error in SessSetup = -13
  CIFS VFS: cifs_mount failed w/return code = -13

Apparently, this is a known problem in Windows Vista that needs to be
fixed on the server side. :-(
Diffstat (limited to 'pkgs/os-specific/linux/cifs-utils')
-rw-r--r--pkgs/os-specific/linux/cifs-utils/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/cifs-utils/default.nix b/pkgs/os-specific/linux/cifs-utils/default.nix
index 777c6a58162..0f8801ef58e 100644
--- a/pkgs/os-specific/linux/cifs-utils/default.nix
+++ b/pkgs/os-specific/linux/cifs-utils/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
-  name = "cifs-utils-5.9";
+  name = "cifs-utils-5.6";
 
   src = fetchurl {
     url = "ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/${name}.tar.bz2";
-    sha256 = "1wmfxbrkn0473pvzpa55qji60hr28ahwv5scxxi77x2lbki4l3gf";
+    sha256 = "0f619nw1163bcmfc83mmqj31qdkl68wfm81vynx3d8q0m0k1ll7i";
   };
 
   patches = [ ./find-systemd-ask-password-via-path.patch ];