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

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

  duneVersion = "3";

  src = fetchurl {
    url = "https://github.com/ahrefs/atd/releases/download/${version}/atdts-${version}.tbz";
    hash = "sha256-TTTuSxNKydPmTmztUapLoxntBIrAo8aWYIJ/G5cok1Y=";
  };

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