mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
new: wdfs-1.4.2 is a user-space file system that allows mounting a webdav share
svn path=/nixpkgs/trunk/; revision=12316
This commit is contained in:
parent
5f8571613d
commit
b01f89ad38
15
pkgs/tools/networking/wdfs/default.nix
Normal file
15
pkgs/tools/networking/wdfs/default.nix
Normal file
@ -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";
|
||||
};
|
||||
}
|
@ -1122,6 +1122,11 @@ let pkgs = rec {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
wdfs = import ../tools/networking/wdfs {
|
||||
inherit stdenv fetchurl neon fuse pkgconfig;
|
||||
inherit (gtkLibs) glib;
|
||||
};
|
||||
|
||||
wgetFun = lib.sumArgs (selectVersion ../tools/networking/wget "1.11") {
|
||||
inherit fetchurl stdenv gettext;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user