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