nixpkgs/pkgs/development/tools/cue/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.2 KiB
Nix
Raw Normal View History

2023-10-26 14:25:46 +00:00
{ buildGoModule
, fetchFromGitHub
, lib
, installShellFiles
, testers
, cue
}:
2019-07-06 07:40:02 +00:00
buildGoModule rec {
pname = "cue";
2024-02-12 17:59:22 +00:00
version = "0.7.1";
2019-07-06 07:40:02 +00:00
src = fetchFromGitHub {
owner = "cue-lang";
repo = "cue";
2019-07-06 07:40:02 +00:00
rev = "v${version}";
2024-02-12 17:59:22 +00:00
hash = "sha256-x8DXAKrkqrZE6mxkIfjMhxZBnFbQnqWhmrvjrFjnQuc=";
2019-07-06 07:40:02 +00:00
};
2023-12-05 09:19:07 +00:00
vendorHash = "sha256-Eq51sydt2eu3pSCRjepvxpU01T0vr0axx9XEk34db28=";
2023-10-26 14:25:46 +00:00
2023-12-05 09:19:07 +00:00
subPackages = [ "cmd/cue" ];
2019-07-06 07:40:02 +00:00
2022-05-04 08:44:21 +00:00
nativeBuildInputs = [ installShellFiles ];
2022-05-04 08:44:21 +00:00
ldflags = [ "-s" "-w" "-X cuelang.org/go/cmd/cue/cmd.version=${version}" ];
2019-07-06 07:40:02 +00:00
2022-05-04 08:44:21 +00:00
postInstall = ''
# Completions
installShellCompletion --cmd cue \
--bash <($out/bin/cue completion bash) \
--fish <($out/bin/cue completion fish) \
--zsh <($out/bin/cue completion zsh)
'';
2019-07-06 07:40:02 +00:00
doInstallCheck = true;
installCheckPhase = ''
$out/bin/cue eval - <<<'a: "all good"' > /dev/null
'';
2022-05-04 08:44:21 +00:00
passthru.tests.version = testers.testVersion {
package = cue;
command = "cue version";
};
meta = with lib; {
2019-11-22 02:08:54 +00:00
description = "A data constraint language which aims to simplify tasks involving defining and using data";
homepage = "https://cuelang.org/";
license = lib.licenses.asl20;
2022-05-04 08:44:21 +00:00
maintainers = with maintainers; [ aaronjheng ];
2019-07-06 07:40:02 +00:00
};
2020-05-16 17:15:28 +00:00
}