nixpkgs/pkgs/tools/filesystems/smbnetfs/default.nix

29 lines
938 B
Nix
Raw Normal View History

2018-05-01 22:13:06 +00:00
{ stdenv, fetchurl, fuse, samba, pkgconfig, glib, autoconf, attr, libsecret }:
stdenv.mkDerivation rec {
pname = "smbnetfs";
2020-04-07 16:13:08 +00:00
version = "0.6.2";
src = fetchurl {
url = "mirror://sourceforge/project/smbnetfs/smbnetfs/SMBNetFS-${version}/${pname}-${version}.tar.bz2";
2020-04-07 16:13:08 +00:00
sha256 = "19x9978k90w9a65lrpsphk7swsq8zkws9jc27q4zbndrm0r2snr0";
};
2018-05-01 22:13:06 +00:00
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 ];
platforms = platforms.linux;
license = licenses.gpl2;
2018-11-24 18:58:03 +00:00
downloadPage = "https://sourceforge.net/projects/smbnetfs/files/smbnetfs";
2014-08-31 18:54:37 +00:00
updateWalker = true;
inherit version;
2020-04-07 16:13:08 +00:00
homepage = "https://sourceforge.net/projects/smbnetfs/";
};
}