summary refs log tree commit diff
diff options
context:
space:
mode:
authorsuperherointj <5861043+superherointj@users.noreply.github.com>2022-07-04 14:53:52 -0300
committerVincent Laporte <vbgl@users.noreply.github.com>2022-07-06 20:34:46 +0200
commit78d0a0688cfe05d820f197bc50d95dce8ea25519 (patch)
treeeb28a6636b6454f2c49ac2fb9ac8e01d460213fd
parent2039758aae57dbd5f2f4a6e79daa85a69441b544 (diff)
downloadnixpkgs-78d0a0688cfe05d820f197bc50d95dce8ea25519.tar
nixpkgs-78d0a0688cfe05d820f197bc50d95dce8ea25519.tar.gz
nixpkgs-78d0a0688cfe05d820f197bc50d95dce8ea25519.tar.bz2
nixpkgs-78d0a0688cfe05d820f197bc50d95dce8ea25519.tar.lz
nixpkgs-78d0a0688cfe05d820f197bc50d95dce8ea25519.tar.xz
nixpkgs-78d0a0688cfe05d820f197bc50d95dce8ea25519.tar.zst
nixpkgs-78d0a0688cfe05d820f197bc50d95dce8ea25519.zip
ocamlPackages.xmlm: 1.3.0 -> 1.4.0
-rw-r--r--pkgs/development/ocaml-modules/xmlm/default.nix8
1 files 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;