2021-01-17 09:17:16 +00:00
|
|
|
{lib, stdenv, fetchurl, glib, neon, fuse, pkg-config}:
|
2008-07-08 00:24:48 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2008-07-08 00:24:48 +01:00
|
|
|
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";
|
|
|
|
};
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 22:26:13 +01:00
|
|
|
buildInputs = [fuse glib neon];
|
2018-09-07 21:38:03 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://noedler.de/projekte/wdfs/";
|
2018-09-07 21:38:03 +01:00
|
|
|
license = licenses.gpl2;
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "User-space filesystem that allows to mount a webdav share";
|
2018-09-07 21:38:03 +01:00
|
|
|
platforms = platforms.linux;
|
2008-07-08 00:24:48 +01:00
|
|
|
};
|
|
|
|
}
|