2015-04-24 18:16:10 +01:00
|
|
|
{ stdenv, fetchurl, fuse, samba, pkgconfig, glib }:
|
2011-02-19 09:56:35 +00:00
|
|
|
|
2015-04-24 18:16:10 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "smbnetfs-${version}";
|
|
|
|
version = "0.6.0";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/project/smbnetfs/smbnetfs/SMBNetFS-${version}/${name}.tar.bz2";
|
2015-01-18 15:19:57 +00:00
|
|
|
sha256 = "16sikr81ipn8v1a1zrqgnsy2as3zcaxbzkr0bm5vxy012bq0plkd";
|
2011-02-19 09:56:35 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ fuse samba glib ];
|
2011-02-19 09:56:35 +00:00
|
|
|
|
2015-04-24 18:16:10 +01:00
|
|
|
meta = with stdenv.lib; {
|
2011-02-19 09:56:35 +00:00
|
|
|
description = "A FUSE FS for mounting Samba shares";
|
2015-04-24 18:16:10 +01:00
|
|
|
maintainers = with maintainers; [ raskin ];
|
2015-11-25 22:04:57 +00:00
|
|
|
platforms = platforms.linux;
|
2015-04-24 18:16:10 +01:00
|
|
|
license = licenses.gpl2;
|
2014-08-31 19:54:37 +01:00
|
|
|
downloadPage = "http://sourceforge.net/projects/smbnetfs/files/smbnetfs";
|
|
|
|
updateWalker = true;
|
|
|
|
inherit version;
|
2017-11-10 21:13:27 +00:00
|
|
|
homepage = https://sourceforge.net/projects/smbnetfs/;
|
2011-02-19 09:56:35 +00:00
|
|
|
};
|
2015-04-24 18:16:10 +01:00
|
|
|
}
|