2021-01-17 09:17:16 +00:00
|
|
|
{lib, stdenv, fetchurl, glib, neon, fuse, pkg-config}:
|
2008-07-07 23:24:48 +00:00
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
stdenv.mkDerivation {
|
2008-07-07 23:24:48 +00:00
|
|
|
name = "wdfs-fuse-1.4.2";
|
|
|
|
src = fetchurl {
|
2010-04-01 08:57:26 +00:00
|
|
|
url = "http://noedler.de/projekte/wdfs/wdfs-1.4.2.tar.gz";
|
2008-07-07 23:24:48 +00:00
|
|
|
sha256 = "fcf2e1584568b07c7f3683a983a9be26fae6534b8109e09167e5dff9114ba2e5";
|
|
|
|
};
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 21:26:13 +00:00
|
|
|
buildInputs = [fuse glib neon];
|
2018-09-07 20:38:03 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://noedler.de/projekte/wdfs/";
|
2018-09-07 20:38:03 +00:00
|
|
|
license = licenses.gpl2;
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "User-space filesystem that allows to mount a webdav share";
|
2018-09-07 20:38:03 +00:00
|
|
|
platforms = platforms.linux;
|
2008-07-07 23:24:48 +00:00
|
|
|
};
|
|
|
|
}
|