1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/tools/filesystems/smbnetfs/default.nix
John Ericson 531e4b80c9 misc pkgs: Basic sed to get fix pkgconfig and autoreconfHook buildInputs
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00

25 lines
781 B
Nix

{ 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";
sha256 = "16sikr81ipn8v1a1zrqgnsy2as3zcaxbzkr0bm5vxy012bq0plkd";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fuse samba glib ];
meta = with stdenv.lib; {
description = "A FUSE FS for mounting Samba shares";
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
license = licenses.gpl2;
downloadPage = "http://sourceforge.net/projects/smbnetfs/files/smbnetfs";
updateWalker = true;
inherit version;
homepage = http://sourceforge.net/projects/smbnetfs/;
};
}