mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
cifs-utils: add 'talloc' to buildInputs, to build cifs.upcall
Fixes this ./configure symptom: configure: WARNING: talloc.h not found, consider installing libtalloc-devel. Disabling cifs.upcall. and is needed to (eventually) fix CIFS + DFS kernel mount on NixOS.
This commit is contained in:
parent
44234570ec
commit
fc6d82cf76
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, kerberos, keyutils, pam }:
|
||||
{ stdenv, fetchurl, kerberos, keyutils, pam, talloc }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cifs-utils-${version}";
|
||||
|
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "1xs9rwqfpx8qj5mcmagw6y1hzwc71zhzb5r8hv06sz16p1w6axz2";
|
||||
};
|
||||
|
||||
buildInputs = [ kerberos keyutils pam ];
|
||||
buildInputs = [ kerberos keyutils pam talloc ];
|
||||
|
||||
makeFlags = "root_sbindir=$(out)/sbin";
|
||||
|
||||
|
|
Loading…
Reference in a new issue