Merge pull request #290442 from aaronjheng/cue

cue: 0.7.1 -> 0.8.0
This commit is contained in:
Weijia Wang 2024-03-28 10:49:49 +01:00 committed by GitHub
commit 0f3fd05994
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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 ];
@ -49,5 +49,6 @@ buildGoModule rec {
homepage = "https://cuelang.org/";
license = lib.licenses.asl20;
maintainers = with maintainers; [ aaronjheng ];
mainProgram = "cue";
};
}