summary refs log tree commit diff
path: root/pkgs/development/libraries/libxslt
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/libxslt
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/libxslt')
-rw-r--r--pkgs/development/libraries/libxslt/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libxslt/default.nix b/pkgs/development/libraries/libxslt/default.nix
index 7798c806982b..4647eecf87d4 100644
--- a/pkgs/development/libraries/libxslt/default.nix
+++ b/pkgs/development/libraries/libxslt/default.nix
@@ -48,7 +48,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     homepage = http://xmlsoft.org/XSLT/;
     description = "A C library and tools to do XSL transformations";
-    license = "bsd";
+    license = licenses.mit;
     platforms = platforms.unix;
     maintainers = [ maintainers.eelco ];
   };