Skip to content

Commit

Permalink
Merge pull request #272228 from aaronjheng/cue
Browse files Browse the repository at this point in the history
cue: 0.6.0 -> 0.7.0
  • Loading branch information
wegank authored Dec 9, 2023
2 parents 08adace + a8135a5 commit 4bf0db6
Showing 1 changed file with 4 additions and 18 deletions.
22 changes: 4 additions & 18 deletions pkgs/development/tools/cue/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{ buildGoModule
, fetchFromGitHub
, fetchpatch
, lib
, installShellFiles
, testers
Expand All @@ -9,31 +8,18 @@

buildGoModule rec {
pname = "cue";
version = "0.6.0";
version = "0.7.0";

src = fetchFromGitHub {
owner = "cue-lang";
repo = "cue";
rev = "v${version}";
hash = "sha256-1svWb83xbVZIlI9pviCYfQ6Kkp0QRjZwrauL7PPJLts=";
hash = "sha256-L2KEOnUmQ6K+VtyJEha0LBWPVt+FqNh94gi3cMg82x0=";
};

vendorHash = "sha256-ku4tPTXdnKau0kqnAAEHDdSF4oAC/6SDkTq8cECOiEk=";
vendorHash = "sha256-Eq51sydt2eu3pSCRjepvxpU01T0vr0axx9XEk34db28=";

patches = [
# Fix tests with go1.21. See https://github.com/cue-lang/cue/issues/2548.
(fetchpatch {
url = "https://github.com/cue-lang/cue/commit/3bf3dbd655284d3628399a83a703f4849b5f9374.patch";
hash = "sha256-9Zi2mrqB1JTFvadiqWTgzzi1pffZ3gOmTtrDDQWye1Q=";
})
];

postPatch = ''
# Disable script tests
rm -f cmd/cue/cmd/script_test.go
'';

excludedPackages = [ "internal/ci/updatetxtar" "internal/cmd/embedpkg" "internal/cmd/qgo" "pkg/gen" ];
subPackages = [ "cmd/cue" ];

nativeBuildInputs = [ installShellFiles ];

Expand Down

0 comments on commit 4bf0db6

Please sign in to comment.