ad31fcad52
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. :-(
21 lines
542 B
Nix
21 lines
542 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cifs-utils-5.6";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/${name}.tar.bz2";
|
|
sha256 = "0f619nw1163bcmfc83mmqj31qdkl68wfm81vynx3d8q0m0k1ll7i";
|
|
};
|
|
|
|
patches = [ ./find-systemd-ask-password-via-path.patch ];
|
|
|
|
makeFlags = "root_sbindir=$(out)/sbin";
|
|
|
|
meta = {
|
|
homepage = http://www.samba.org/linux-cifs/cifs-utils/;
|
|
description = "Tools for managing Linux CIFS client filesystems";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|