* Refactoring: move most filesystem utilities / FUSE filesystems to
tools/filesystems. Previously they were all over the place. svn path=/nixpkgs/trunk/; revision=18809
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
{stdenv, fetchurl, glib, neon, fuse, pkgconfig}:
|
||||
|
||||
stdenv.mkDerivation rec
|
||||
{
|
||||
name = "wdfs-fuse-1.4.2";
|
||||
src = fetchurl {
|
||||
url = "http://noedler.de/projekte/wdfs/${name}.tar.gz";
|
||||
sha256 = "fcf2e1584568b07c7f3683a983a9be26fae6534b8109e09167e5dff9114ba2e5";
|
||||
};
|
||||
buildInputs = [fuse glib neon pkgconfig];
|
||||
meta = {
|
||||
homepage = "http://noedler.de/projekte/wdfs/";
|
||||
description = "wdfs a user-space filesystem that allows to mount a webdav share";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user