Merge pull request #224566 from aaronjheng/cue

cue: 0.4.3 -> 0.5.0
This commit is contained in:
Nick Cao 2023-04-13 21:57:43 +08:00 committed by GitHub
commit c468fa7ac4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 6 deletions

View file

@ -2,13 +2,13 @@
buildGoModule rec {
pname = "cue";
version = "0.4.3";
version = "0.5.0";
src = fetchFromGitHub {
owner = "cue-lang";
repo = "cue";
rev = "v${version}";
hash = "sha256-v9MYrijnbtJpTgRZ4hmkaekisOyujldGewCRNbkVzWw=";
hash = "sha256-4E50VrekIkVXhzHVNehgm6/DbkofvqlNSgX9oK9SLu4=";
};
postPatch = ''
@ -16,7 +16,7 @@ buildGoModule rec {
rm -f cmd/cue/cmd/script_test.go
'';
vendorHash = "sha256-jTfV8DJlr5LxS3HjOEBkVzBvZKiySrmINumXSUIq2mI=";
vendorHash = "sha256-0N0bZdimGHu3vkLe+eGKBTm/YeSQOnp+Pxhz3LVniTk=";
excludedPackages = [ "internal/ci/updatetxtar" "internal/cmd/embedpkg" "internal/cmd/qgo" "pkg/gen" ];

View file

@ -3180,9 +3180,7 @@ with pkgs;
cudd = callPackage ../development/libraries/cudd { };
cue = callPackage ../development/tools/cue {
buildGoModule = buildGo118Module; # tests fail with 1.19
};
cue = callPackage ../development/tools/cue { };
writeCueValidator = callPackage ../development/tools/cue/validator.nix { };