summary refs log tree commit diff
path: root/pkgs/development/libraries/libxml2
diff options
context:
space:
mode:
authorDan Peebles <pumpkin@me.com>2017-04-28 23:02:37 -0400
committerDan Peebles <pumpkin@me.com>2017-04-28 23:07:42 -0400
commit1a4ca220e15480818b78041d46bf0ca438671d33 (patch)
treec67d61fcbbc296f4ca15f75d6c2a39b3a6144727 /pkgs/development/libraries/libxml2
parent76137a801d96294e90a9d4d3132c7516d86cb567 (diff)
downloadnixlib-1a4ca220e15480818b78041d46bf0ca438671d33.tar
nixlib-1a4ca220e15480818b78041d46bf0ca438671d33.tar.gz
nixlib-1a4ca220e15480818b78041d46bf0ca438671d33.tar.bz2
nixlib-1a4ca220e15480818b78041d46bf0ca438671d33.tar.lz
nixlib-1a4ca220e15480818b78041d46bf0ca438671d33.tar.xz
nixlib-1a4ca220e15480818b78041d46bf0ca438671d33.tar.zst
nixlib-1a4ca220e15480818b78041d46bf0ca438671d33.zip
treewide: fix assorted issues revealed by the meta checker
Turns out a couple of the licenses were wrong, as well as being strings.
Diffstat (limited to 'pkgs/development/libraries/libxml2')
-rw-r--r--pkgs/development/libraries/libxml2/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libxml2/default.nix b/pkgs/development/libraries/libxml2/default.nix
index d44a8c973fdc..fb397ace7941 100644
--- a/pkgs/development/libraries/libxml2/default.nix
+++ b/pkgs/development/libraries/libxml2/default.nix
@@ -70,7 +70,7 @@ in stdenv.mkDerivation rec {
   meta = {
     homepage = http://xmlsoft.org/;
     description = "An XML parsing library for C";
-    license = "bsd";
+    license = lib.licenses.mit;
     platforms = lib.platforms.unix;
     maintainers = [ lib.maintainers.eelco ];
   };