nixpkgs/pkgs/tools/filesystems/wdfs/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

17 lines
506 B
Nix

{stdenv, fetchurl, glib, neon, fuse, pkgconfig}:
stdenv.mkDerivation rec
{
name = "wdfs-fuse-1.4.2";
src = fetchurl {
url = "http://noedler.de/projekte/wdfs/wdfs-1.4.2.tar.gz";
sha256 = "fcf2e1584568b07c7f3683a983a9be26fae6534b8109e09167e5dff9114ba2e5";
};
buildInputs = [fuse glib neon pkgconfig];
meta = {
homepage = http://noedler.de/projekte/wdfs/;
description = "User-space filesystem that allows to mount a webdav share";
platforms = stdenv.lib.platforms.linux;
};
}