Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildGoModule, 3 fetchFromGitHub, 4 lib, 5}: 6 7buildGoModule rec { 8 pname = "cuetsy"; 9 version = "0.1.11"; 10 11 src = fetchFromGitHub { 12 owner = "grafana"; 13 repo = "cuetsy"; 14 rev = "v${version}"; 15 hash = "sha256-dirzVR4j5K1+EHbeRi4rHwRxkyveySoM7qJzvOlGp+0="; 16 }; 17 18 vendorHash = "sha256-CDa7ZfbVQOIt24VZTy4j0Dn24nolmYa0h9zgrJ3QTeY="; 19 20 meta = { 21 description = "Experimental CUE->TypeScript exporter"; 22 homepage = "https://github.com/grafana/cuetsy"; 23 license = lib.licenses.asl20; 24 maintainers = with lib.maintainers; [ bryanhonof ]; 25 mainProgram = "cuetsy"; 26 }; 27}