Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

koto: refactor

Defelo ac25dfd6 1ccde680

+6 -2
+6 -2
pkgs/by-name/ko/koto/package.nix
··· 22 cargoHash = "sha256-Ok4rgqiQ7N5knXdb0Mfn3fYPPLXoRtOZVv8RvWR2h3k="; 23 24 postPatch = '' 25 - ${lib.getExe' yq "tomlq"} -ti 'del(.bench)' crates/koto/Cargo.toml 26 ''; 27 28 cargoBuildFlags = [ "--package=koto_cli" ]; 29 ··· 36 meta = { 37 description = "Simple, expressive, embeddable programming language"; 38 homepage = "https://github.com/koto-lang/koto"; 39 - changelog = "https://github.com/koto-lang/koto/blob/${finalAttrs.src.rev}/CHANGELOG.md"; 40 license = lib.licenses.mit; 41 maintainers = with lib.maintainers; [ defelo ]; 42 mainProgram = "koto";
··· 22 cargoHash = "sha256-Ok4rgqiQ7N5knXdb0Mfn3fYPPLXoRtOZVv8RvWR2h3k="; 23 24 postPatch = '' 25 + tomlq -ti 'del(.bench)' crates/koto/Cargo.toml 26 ''; 27 + 28 + nativeBuildInputs = [ 29 + yq # for `tomlq` 30 + ]; 31 32 cargoBuildFlags = [ "--package=koto_cli" ]; 33 ··· 40 meta = { 41 description = "Simple, expressive, embeddable programming language"; 42 homepage = "https://github.com/koto-lang/koto"; 43 + changelog = "https://github.com/koto-lang/koto/blob/v${finalAttrs.version}/CHANGELOG.md"; 44 license = lib.licenses.mit; 45 maintainers = with lib.maintainers; [ defelo ]; 46 mainProgram = "koto";