summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/atdgen/codec-runtime.nix
blob: a2f3b32b7fccdd41d81a322d2bfa747fd39a0eb0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, buildDunePackage, fetchurl }:

buildDunePackage rec {
  pname = "atdgen-codec-runtime";
  version = "2.9.1";

  src = fetchurl {
    url = "https://github.com/ahrefs/atd/releases/download/${version}/atdts-${version}.tbz";
    sha256 = "sha256-OdwaUR0Ix0Oz8NDm36nIyvIRzF+r/pKgiej1fhcOmuQ=";
  };

  meta = {
    description = "Runtime for atdgen generated bucklescript converters";
    homepage = "https://github.com/ahrefs/atd";
    maintainers = [ lib.maintainers.vbgl ];
    license = lib.licenses.mit;
  };
}