Merge pull request #56843 from knedlsepp/fix-smbnetfs

Fix smbnetfs
This commit is contained in:
Michael Raskin
2019-03-04 21:12:48 +00:00
committed by GitHub

View File

@@ -11,6 +11,10 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig autoconf ];
buildInputs = [ fuse samba glib attr libsecret ];
postPatch = ''
substituteInPlace src/function.c --replace "attr/xattr.h" "sys/xattr.h"
'';
meta = with stdenv.lib; {
description = "A FUSE FS for mounting Samba shares";
maintainers = with maintainers; [ raskin ];