lol

ocamlPackages.hxd: 0.3.1 -> 0.3.2

https://github.com/dinosaure/hxd/releases/tag/v0.3.2

authored by

sternenseemann and committed by
Vincent Laporte
ff494fa0 78d0a068

+9 -14
+6 -13
pkgs/development/ocaml-modules/hxd/default.nix
··· 1 1 { lib, buildDunePackage, fetchurl 2 - , ocaml, dune-configurator, cmdliner 3 - , lwt, withLwt ? lib.versionAtLeast ocaml.version "4.07" 2 + , dune-configurator, cmdliner 3 + , lwt, withLwt ? true 4 4 }: 5 5 6 6 buildDunePackage rec { 7 7 pname = "hxd"; 8 - version = "0.3.1"; 8 + version = "0.3.2"; 9 9 10 - useDune2 = true; 11 - 12 - minimumOCamlVersion = "4.06"; 10 + minimalOCamlVersion = "4.08"; 13 11 14 12 src = fetchurl { 15 - url = "https://github.com/dinosaure/hxd/releases/download/v${version}/hxd-v${version}.tbz"; 16 - sha256 = "1c226c91e17cd329dec0c287bfd20f36302aa533069ff9c6ced32721f96b29bc"; 13 + url = "https://github.com/dinosaure/hxd/releases/download/v${version}/hxd-${version}.tbz"; 14 + sha256 = "a00290abb8538e79b32ddc22ed9b301b9806bc4c03eb1e5105b14af47dabec9f"; 17 15 }; 18 - 19 - # ignore yes stderr output due to trapped SIGPIPE 20 - postPatch = '' 21 - sed -i 's|yes ".\+"|& 2> /dev/null|' test/*.t 22 - ''; 23 16 24 17 propagatedBuildInputs = lib.optional withLwt lwt; 25 18
+3 -1
pkgs/top-level/ocaml-packages.nix
··· 519 519 520 520 hpack = callPackage ../development/ocaml-modules/hpack { }; 521 521 522 - hxd = callPackage ../development/ocaml-modules/hxd { }; 522 + hxd = callPackage ../development/ocaml-modules/hxd { 523 + cmdliner = cmdliner_1_1; 524 + }; 523 525 524 526 imagelib = callPackage ../development/ocaml-modules/imagelib { }; 525 527