2008-07-08 00:24:48 +01:00
|
|
|
{stdenv, fetchurl, glib, neon, fuse, pkgconfig}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec
|
|
|
|
{
|
|
|
|
name = "wdfs-fuse-1.4.2";
|
|
|
|
src = fetchurl {
|
2010-04-01 09:57:26 +01:00
|
|
|
url = "http://noedler.de/projekte/wdfs/wdfs-1.4.2.tar.gz";
|
2008-07-08 00:24:48 +01:00
|
|
|
sha256 = "fcf2e1584568b07c7f3683a983a9be26fae6534b8109e09167e5dff9114ba2e5";
|
|
|
|
};
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [fuse glib neon];
|
2008-07-08 00:24:48 +01:00
|
|
|
meta = {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://noedler.de/projekte/wdfs/;
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "User-space filesystem that allows to mount a webdav share";
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2008-07-08 00:24:48 +01:00
|
|
|
};
|
|
|
|
}
|