summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/markup
diff options
context:
space:
mode:
authorFlorent Becker <florent.becker@ens-lyon.org>2016-05-31 18:06:38 +0200
committerFlorent Becker <florent.becker@ens-lyon.org>2016-05-31 19:10:08 +0200
commit71888e7973a967bdfdfd41cdc1632e8b659752cd (patch)
tree5f8d554af61a73d4a46240a681f0bf91df5d5e1a /pkgs/development/ocaml-modules/markup
parent33a5a132e574bf2ef41a7285edb03f2a71098a19 (diff)
downloadnixlib-71888e7973a967bdfdfd41cdc1632e8b659752cd.tar
nixlib-71888e7973a967bdfdfd41cdc1632e8b659752cd.tar.gz
nixlib-71888e7973a967bdfdfd41cdc1632e8b659752cd.tar.bz2
nixlib-71888e7973a967bdfdfd41cdc1632e8b659752cd.tar.lz
nixlib-71888e7973a967bdfdfd41cdc1632e8b659752cd.tar.xz
nixlib-71888e7973a967bdfdfd41cdc1632e8b659752cd.tar.zst
nixlib-71888e7973a967bdfdfd41cdc1632e8b659752cd.zip
ocaml-markup: fix name and license
Diffstat (limited to 'pkgs/development/ocaml-modules/markup')
-rw-r--r--pkgs/development/ocaml-modules/markup/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/markup/default.nix b/pkgs/development/ocaml-modules/markup/default.nix
index ed285dc58523..d4a38d9bd9e4 100644
--- a/pkgs/development/ocaml-modules/markup/default.nix
+++ b/pkgs/development/ocaml-modules/markup/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, ocaml, findlib, uutf, lwt }:
 
 stdenv.mkDerivation rec {
-  pname = "markup";
+  pname = "ocaml-markup";
   version = "0.7.2";
   name = "${pname}-${version}";
 
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     homepage = https://github.com/aantron/markup.ml/;
     description = "A pair of best-effort parsers implementing the HTML5 and XML specifications";
-    license = licenses.bsd3;
+    license = licenses.bsd2;
     platforms = ocaml.meta.platforms or [];
     maintainers = with maintainers; [
       gal_bolle