···1-{stdenv, fetchurl, neon, zlib}:
2-3-stdenv.mkDerivation rec {
4- name = "davfs2-1.4.1";
5-6- src = fetchurl {
7- url = "http://www.very-clever.com/download/nongnu/davfs2/${name}.tar.gz";
8- sha256 = "0fqq331rd3ylzfhdsbbj0b2znn3d0js0kxcv3w54dl9g2cs8fqhn";
9- };
10-11- buildInputs = [ neon zlib ];
12- patches = [ ./davfs2-install.patch ];
13-14- meta = {
15- description = "Web Distributed Authoring and Versioning (WebDAV), an extension to the HTTP-protocol, allows authoring of resources on a remote web server. davfs2 provides the ability to access such resources like a typical filesystem, allowing for use by standard applications with no built-in support for WebDAV.";
16-17- license = "GPLv3+";
18- homepage = http://savannah.nongnu.org/projects/davfs2;
19- };
20-}
···00000000000000000000
+21
pkgs/tools/filesystems/davfs2/default.nix
···000000000000000000000
···1+{ stdenv, fetchurl, neon, zlib }:
2+3+stdenv.mkDerivation rec {
4+ name = "davfs2-1.4.5";
5+6+ src = fetchurl {
7+ url = "mirror://savannah/davfs2/${name}.tar.gz";
8+ sha256 = "1pkl2braggp2qg4c68dwfv399l9jz7cvi7gkm4xbj6mgvl0cxw18";
9+ };
10+11+ buildInputs = [ neon zlib ];
12+13+ patches = [ ./davfs2-install.patch ];
14+15+ meta = {
16+ longDescription = "Web Distributed Authoring and Versioning (WebDAV), an extension to the HTTP-protocol, allows authoring of resources on a remote web server. davfs2 provides the ability to access such resources like a typical filesystem, allowing for use by standard applications with no built-in support for WebDAV.";
17+18+ license = "GPLv3+";
19+ homepage = http://savannah.nongnu.org/projects/davfs2;
20+ };
21+}