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

24 lines
754 B
Nix
Raw Normal View History

{ stdenv, fetchurl, fuse, samba, pkgconfig, glib }:
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";
};
buildInputs = [ fuse samba pkgconfig glib ];
meta = with stdenv.lib; {
description = "A FUSE FS for mounting Samba shares";
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
license = licenses.gpl2;
2014-08-31 18:54:37 +00:00
downloadPage = "http://sourceforge.net/projects/smbnetfs/files/smbnetfs";
updateWalker = true;
inherit version;
homepage = http://sourceforge.net/projects/smbnetfs/;
};
}