biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / asetmap / default.nix
blob976de44959f6f15d90b9cc116fab6afc704ff29e
1 { lib
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 = [ topkg findlib ocamlbuild ocaml ];
21   buildInputs = [ topkg ];
23   inherit (topkg) buildPhase installPhase;
25   meta = { inherit (ocaml.meta) platforms; };