biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / hex / default.nix
blob42c1b5d5c13b2f94eac774b6fd72d0597bda86f6
1 { lib, fetchurl, buildDunePackage, cstruct }:
3 buildDunePackage rec {
4   pname = "hex";
5   version = "1.5.0";
7   duneVersion = "3";
8   minimalOCamlVersion = "4.08";
10   src = fetchurl {
11     url = "https://github.com/mirage/ocaml-${pname}/releases/download/v${version}/hex-${version}.tbz";
12     hash = "sha256-LmfuyhsDBJMHowgxtc1pS8stPn8qa0+1l/vbZHNRtNw=";
13   };
15   propagatedBuildInputs = [ cstruct ];
16   doCheck = true;
18   meta = {
19     description = "Mininal OCaml library providing hexadecimal converters";
20     homepage = "https://github.com/mirage/ocaml-hex";
21     license = lib.licenses.isc;
22     maintainers = with lib.maintainers; [ vbgl ];
23   };