2021-01-17 10:17:16 +01:00
|
|
|
{ lib, stdenv, fetchurl, fuse, samba, pkg-config, glib, autoconf, attr, libsecret }:
|
2011-02-19 10:56:35 +01:00
|
|
|
|
2015-04-24 19:16:10 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "smbnetfs";
|
2021-03-09 17:17:36 +01:00
|
|
|
version = "0.6.3";
|
2015-04-24 19:16:10 +02:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://sourceforge/project/smbnetfs/smbnetfs/SMBNetFS-${version}/${pname}-${version}.tar.bz2";
|
2021-03-09 17:17:36 +01:00
|
|
|
sha256 = "sha256-6sN7l2n76cP0uvPrZMYaa1mtTyqgXf3culoaxK301WA=";
|
2011-02-19 10:56:35 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 10:17:16 +01:00
|
|
|
nativeBuildInputs = [ pkg-config autoconf ];
|
2018-05-02 00:13:06 +02:00
|
|
|
buildInputs = [ fuse samba glib attr libsecret ];
|
2011-02-19 10:56:35 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2011-02-19 10:56:35 +01:00
|
|
|
description = "A FUSE FS for mounting Samba shares";
|
2015-04-24 19:16:10 +02:00
|
|
|
maintainers = with maintainers; [ raskin ];
|
2015-11-25 23:04:57 +01:00
|
|
|
platforms = platforms.linux;
|
2015-04-24 19:16:10 +02:00
|
|
|
license = licenses.gpl2;
|
2018-11-24 19:58:03 +01:00
|
|
|
downloadPage = "https://sourceforge.net/projects/smbnetfs/files/smbnetfs";
|
2014-08-31 20:54:37 +02:00
|
|
|
updateWalker = true;
|
2020-04-07 18:13:08 +02:00
|
|
|
homepage = "https://sourceforge.net/projects/smbnetfs/";
|
2011-02-19 10:56:35 +01:00
|
|
|
};
|
2015-04-24 19:16:10 +02:00
|
|
|
}
|