nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 22 lines 554 B view raw
1{ 2 lib, 3 buildDunePackage, 4 fetchurl, 5}: 6 7buildDunePackage (finalAttrs: { 8 pname = "atdgen-codec-runtime"; 9 version = "3.0.1"; 10 11 src = fetchurl { 12 url = "https://github.com/ahrefs/atd/releases/download/${finalAttrs.version}/atd-${finalAttrs.version}.tbz"; 13 hash = "sha256-A66uRWWjLYu2ishRSvXvx4ALFhnClzlBynE4sSs0SIQ="; 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})