about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-03-28 10:49:49 +0100
committerGitHub <noreply@github.com>2024-03-28 10:49:49 +0100
commit0f3fd05994ad7698399904723494311d86ecb868 (patch)
treeb29ac02e519a56d17c02c62face1835b97faf00e
parent9dfc4f63e4dec34e344933b91b4354f9ac93806b (diff)
parent465151cdb2355c845de03e538ea8f6862aa93396 (diff)
downloadnixlib-0f3fd05994ad7698399904723494311d86ecb868.tar
nixlib-0f3fd05994ad7698399904723494311d86ecb868.tar.gz
nixlib-0f3fd05994ad7698399904723494311d86ecb868.tar.bz2
nixlib-0f3fd05994ad7698399904723494311d86ecb868.tar.lz
nixlib-0f3fd05994ad7698399904723494311d86ecb868.tar.xz
nixlib-0f3fd05994ad7698399904723494311d86ecb868.tar.zst
nixlib-0f3fd05994ad7698399904723494311d86ecb868.zip
Merge pull request #290442 from aaronjheng/cue
cue: 0.7.1 -> 0.8.0
-rw-r--r--pkgs/development/tools/cue/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/tools/cue/default.nix b/pkgs/development/tools/cue/default.nix
index 9ff5cc631b1f..6219cd4f300a 100644
--- a/pkgs/development/tools/cue/default.nix
+++ b/pkgs/development/tools/cue/default.nix
@@ -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";
   };
 }