cue: 0.7.1 -> 0.8.0

This commit is contained in:
Aaron Jheng 2024-02-21 22:37:51 +08:00
parent 2dd8b30c33
commit 465151cdb2
No known key found for this signature in database
GPG Key ID: F6A547A869D050A3
1 changed files with 5 additions and 4 deletions

View File

@ -8,18 +8,18 @@
buildGoModule rec {
pname = "cue";
version = "0.7.1";
version = "0.8.0";
src = fetchFromGitHub {
owner = "cue-lang";
repo = "cue";
rev = "v${version}";
hash = "sha256-x8DXAKrkqrZE6mxkIfjMhxZBnFbQnqWhmrvjrFjnQuc=";
hash = "sha256-7gn8/35rpbyzSP4ZM21ig6Wsq5Tp18x1Ex/IVb2iE7k=";
};
vendorHash = "sha256-Eq51sydt2eu3pSCRjepvxpU01T0vr0axx9XEk34db28=";
vendorHash = "sha256-0OZtKIDdEnQLnSj109EpGvaZvMIy7gPAZ+weHzYKGSg=";
subPackages = [ "cmd/cue" ];
subPackages = [ "cmd/*" ];
nativeBuildInputs = [ installShellFiles ];
@ -48,5 +48,6 @@ buildGoModule rec {
homepage = "https://cuelang.org/";
license = lib.licenses.asl20;
maintainers = with maintainers; [ aaronjheng ];
mainProgram = "cue";
};
}