cuetsy: init at 0.1.11 (#340223)

* cuetsy: init at 0.1.11

* Update package.nix

Co-authored-by: Aleksana <alexander.huang.y@gmail.com>

---------

Co-authored-by: Aleksana <alexander.huang.y@gmail.com>
This commit is contained in:
Bryan Honof 2024-09-07 16:33:58 +02:00 committed by GitHub
parent 06ea4ab184
commit 41ab86b1d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,27 @@
{
buildGoModule,
fetchFromGitHub,
lib,
}:
buildGoModule rec {
pname = "cuetsy";
version = "0.1.11";
src = fetchFromGitHub {
owner = "grafana";
repo = "cuetsy";
rev = "v${version}";
hash = "sha256-dirzVR4j5K1+EHbeRi4rHwRxkyveySoM7qJzvOlGp+0=";
};
vendorHash = "sha256-CDa7ZfbVQOIt24VZTy4j0Dn24nolmYa0h9zgrJ3QTeY=";
meta = {
description = "Experimental CUE->TypeScript exporter";
homepage = "https://github.com/grafana/cuetsy";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ bryanhonof ];
mainProgram = "cuetsy";
};
}