Files
nixpkgs/pkgs/development/ocaml-modules/atdgen/codec-runtime.nix
T
Vincent Laporte eec6d815c9 ocamlPackages.yojson: 2.2.2 → 3.0.0
ocamlPackages.atdgen-codec-runtime: 2.16.0 → 3.0.1
2025-12-12 06:35:52 +01:00

23 lines
554 B
Nix

{
lib,
buildDunePackage,
fetchurl,
}:
buildDunePackage (finalAttrs: {
pname = "atdgen-codec-runtime";
version = "3.0.1";
src = fetchurl {
url = "https://github.com/ahrefs/atd/releases/download/${finalAttrs.version}/atd-${finalAttrs.version}.tbz";
hash = "sha256-A66uRWWjLYu2ishRSvXvx4ALFhnClzlBynE4sSs0SIQ=";
};
meta = {
description = "Runtime for atdgen generated bucklescript converters";
homepage = "https://github.com/ahrefs/atd";
maintainers = [ lib.maintainers.vbgl ];
license = lib.licenses.mit;
};
})