ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / pkgs / development / ocaml-modules / asetmap / default.nix
blob11cecd66cc9dec3bb9bd239abc49404374622179
2   fetchurl,
3   buildDunePackage,
4   topkg,
5   findlib,
6   ocamlbuild,
7   ocaml,
8 }:
10 buildDunePackage rec {
11   pname = "asetmap";
12   version = "0.8.1";
13   src = fetchurl {
14     url = "https://github.com/dbuenzli/asetmap/archive/refs/tags/v${version}.tar.gz";
15     sha256 = "051ky0k62xp4inwi6isif56hx5ggazv4jrl7s5lpvn9cj8329frj";
16   };
18   strictDeps = true;
20   nativeBuildInputs = [
21     topkg
22     findlib
23     ocamlbuild
24     ocaml
25   ];
26   buildInputs = [ topkg ];
28   inherit (topkg) buildPhase installPhase;
30   meta = { inherit (ocaml.meta) platforms; };