forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / development / ocaml-modules / asetmap / default.nix
blob40152ef5cbf42391d854a44f3a2a60c8d702be5c
1 { fetchurl
2 , buildDunePackage
3 , topkg
4 , findlib
5 , ocamlbuild
6 , ocaml
7 }:
9 buildDunePackage rec {
10   pname = "asetmap";
11   version = "0.8.1";
12   src = fetchurl {
13     url = "https://github.com/dbuenzli/asetmap/archive/refs/tags/v${version}.tar.gz";
14     sha256 = "051ky0k62xp4inwi6isif56hx5ggazv4jrl7s5lpvn9cj8329frj";
15   };
17   strictDeps = true;
19   nativeBuildInputs = [ topkg findlib ocamlbuild ocaml ];
20   buildInputs = [ topkg ];
22   inherit (topkg) buildPhase installPhase;
24   meta = { inherit (ocaml.meta) platforms; };