summary refs log tree commit diff
path: root/pkgs/tools/filesystems/wdfs
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2018-09-07 22:38:03 +0200
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-09-07 23:48:26 +0200
commit0f61edc465a643d48471a0b96b362694419f3ecb (patch)
tree4771557edec732dab31129dd1a98c6345549f990 /pkgs/tools/filesystems/wdfs
parent9a46c0f384fc2025d69cea4ab2ea4a3625738710 (diff)
wfds: add license
Diffstat (limited to 'pkgs/tools/filesystems/wdfs')
-rw-r--r--pkgs/tools/filesystems/wdfs/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/tools/filesystems/wdfs/default.nix b/pkgs/tools/filesystems/wdfs/default.nix
index dc725b5078f02..135373e09f42f 100644
--- a/pkgs/tools/filesystems/wdfs/default.nix
+++ b/pkgs/tools/filesystems/wdfs/default.nix
@@ -9,9 +9,11 @@ stdenv.mkDerivation rec
   };
   nativeBuildInputs = [ pkgconfig ];
   buildInputs = [fuse glib neon];
-  meta = {
+
+  meta = with stdenv.lib; {
     homepage = http://noedler.de/projekte/wdfs/;
+    license = licenses.gpl2;
     description = "User-space filesystem that allows to mount a webdav share";
-    platforms = stdenv.lib.platforms.linux;
+    platforms = platforms.linux;
   };
 }