Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildDunePackage, fetchurl }:
2
3buildDunePackage rec {
4 pname = "atdgen-codec-runtime";
5 version = "2.11.0";
6
7 duneVersion = "3";
8
9 src = fetchurl {
10 url = "https://github.com/ahrefs/atd/releases/download/${version}/atdts-${version}.tbz";
11 hash = "sha256-TTTuSxNKydPmTmztUapLoxntBIrAo8aWYIJ/G5cok1Y=";
12 };
13
14 meta = {
15 description = "Runtime for atdgen generated bucklescript converters";
16 homepage = "https://github.com/ahrefs/atd";
17 maintainers = [ lib.maintainers.vbgl ];
18 license = lib.licenses.mit;
19 };
20}