907bb1aac6
* libdbi / libdbi-drivers: updated to 0.8.3, and make it compile with SQLite. * qemu-image: fix the URL. * gdmap: make it build again (requires an older GTK+). * rlwrap: updated to 0.37. * smbfs-fuse -> fusesmb to match the upstream name. * x11vnc: updated to 0.9.10. * clearlyU: fix the URL. * Various packages: follow the coding conventions. svn path=/nixpkgs/trunk/; revision=22814
24 lines
554 B
Nix
24 lines
554 B
Nix
{ stdenv, fetchurl, samba, fuse }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "fusesmb-0.8.7";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.ricardis.tudelft.nl/~vincent/fusesmb/download/${name}.tar.gz";
|
|
sha256 = "12gz2gn9iqjg27a233dn2wij7snm7q56h97k6gks0yijf6xcnpz1";
|
|
};
|
|
|
|
buildInputs = [ samba fuse ];
|
|
|
|
postInstall =
|
|
''
|
|
ensureDir $out/lib
|
|
ln -fs ${samba}/lib/libsmbclient.so $out/lib/libsmbclient.so.0
|
|
'';
|
|
|
|
meta = {
|
|
description = "Samba mounted via FUSE";
|
|
homepage = http://www.ricardis.tudelft.nl/~vincent/fusesmb/;
|
|
};
|
|
}
|