summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2018-10-18 21:38:37 +0200
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-10-18 22:36:22 +0200
commit0d12ce52e4117766681640c5bfab811ba3724b43 (patch)
tree6637e8823a4ed5dcf60178caeeb176afc924f3cc
parenta504cfa19069465491793aa3a5146410627d70b5 (diff)
downloadnixpkgs-0d12ce52e4117766681640c5bfab811ba3724b43.tar
nixpkgs-0d12ce52e4117766681640c5bfab811ba3724b43.tar.gz
nixpkgs-0d12ce52e4117766681640c5bfab811ba3724b43.tar.bz2
nixpkgs-0d12ce52e4117766681640c5bfab811ba3724b43.tar.lz
nixpkgs-0d12ce52e4117766681640c5bfab811ba3724b43.tar.xz
nixpkgs-0d12ce52e4117766681640c5bfab811ba3724b43.tar.zst
nixpkgs-0d12ce52e4117766681640c5bfab811ba3724b43.zip
redland: add license + description
-rw-r--r--pkgs/development/libraries/librdf/redland.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/librdf/redland.nix b/pkgs/development/libraries/librdf/redland.nix
index 422ace462a9..30d8d8a94e9 100644
--- a/pkgs/development/libraries/librdf/redland.nix
+++ b/pkgs/development/libraries/librdf/redland.nix
@@ -38,8 +38,10 @@ stdenv.mkDerivation rec {
 
   doCheck = false; # fails 1 out of 17 tests with a segmentation fault
 
-  meta = {
+  meta = with stdenv.lib; {
+    description = "C libraries that provide support for the Resource Description Framework (RDF)";
     homepage = http://librdf.org/;
-    platforms = stdenv.lib.platforms.unix;
+    platforms = platforms.unix;
+    license = licenses.asl20;
   };
 }