From 78d0a0688cfe05d820f197bc50d95dce8ea25519 Mon Sep 17 00:00:00 2001 From: superherointj <5861043+superherointj@users.noreply.github.com> Date: Mon, 4 Jul 2022 14:53:52 -0300 Subject: [PATCH] ocamlPackages.xmlm: 1.3.0 -> 1.4.0 --- pkgs/development/ocaml-modules/xmlm/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/ocaml-modules/xmlm/default.nix b/pkgs/development/ocaml-modules/xmlm/default.nix index 9396dd7b914..82d64566b9a 100644 --- a/pkgs/development/ocaml-modules/xmlm/default.nix +++ b/pkgs/development/ocaml-modules/xmlm/default.nix @@ -4,17 +4,17 @@ let webpage = "https://erratique.ch/software/${pname}"; in -if lib.versionOlder ocaml.version "4.02" +if lib.versionOlder ocaml.version "4.05" then throw "xmlm is not available for OCaml ${ocaml.version}" else stdenv.mkDerivation rec { name = "ocaml${ocaml.version}-${pname}-${version}"; - version = "1.3.0"; + version = "1.4.0"; src = fetchurl { url = "${webpage}/releases/${pname}-${version}.tbz"; - sha256 = "1rrdxg5kh9zaqmgapy9bhdqyxbbvxxib3bdfg1vhw4rrkp1z0x8n"; + sha256 = "sha256-CRJSJY490WMgw85N2yG81X79nIwuv7eZ7mpUPtSS2fo="; }; nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ]; @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "An OCaml streaming codec to decode and encode the XML data format"; homepage = webpage; - license = licenses.bsd3; + license = licenses.isc; maintainers = [ maintainers.vbgl ]; mainProgram = "xmltrip"; inherit (ocaml.meta) platforms;