cue: 0.4.3 -> 0.5.0

This commit is contained in:
Aaron Jheng 2022-11-17 14:48:03 +00:00
parent fe2ecaf706
commit 1f89279674
No known key found for this signature in database
GPG Key ID: F6A547A869D050A3
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

@ -3182,9 +3182,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 { };