f09f7f1778
ocamlPackages.merlin: 3.4.2 → 3.8.0 ocamlPackages.merlin: 4.5 → 4.6 ocamlPackages.{atd,atdgen}: 2.9.1 → 2.10.0 ocamlPackages.elpi: fix build with atd 2.10.0
18 lines
520 B
Nix
18 lines
520 B
Nix
{ lib, buildDunePackage, fetchurl }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "atdgen-codec-runtime";
|
|
version = "2.10.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ahrefs/atd/releases/download/${version}/atdts-${version}.tbz";
|
|
sha256 = "sha256-d9J0CaTp2sQbnKLp6mCDbGwYAIsioVer7ftaLSSFCZg=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Runtime for atdgen generated bucklescript converters";
|
|
homepage = "https://github.com/ahrefs/atd";
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|