nixpkgs/pkgs/by-name/cu/cue/package.nix

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

60 lines
1.3 KiB
Nix
Raw Normal View History

2023-10-26 14:25:46 +00:00
{ buildGoModule
, fetchFromGitHub
, lib
, installShellFiles
, testers
, cue
, callPackage
2023-10-26 14:25:46 +00:00
}:
2019-07-06 07:40:02 +00:00
buildGoModule rec {
pname = "cue";
2024-06-26 15:57:48 +00:00
version = "0.9.2";
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-06-26 15:57:48 +00:00
hash = "sha256-C3BvI43oo71y19ZRflqhKRQF7DwBBOV0yRlutv+W18g=";
2019-07-06 07:40:02 +00:00
};
2024-06-07 00:34:45 +00:00
vendorHash = "sha256-FsFignBh669E60S8l8siQHLzeSfB5X/XOHBXPMDX3Cg=";
2023-10-26 14:25:46 +00:00
2024-02-21 14:37:51 +00:00
subPackages = [ "cmd/*" ];
2019-07-06 07:40:02 +00:00
2022-05-04 08:44:21 +00:00
nativeBuildInputs = [ installShellFiles ];
2024-06-14 11:13:30 +00:00
ldflags = [
"-s"
"-w"
"-X cuelang.org/go/cmd/cue/cmd.version=v${version}"
];
2019-07-06 07:40:02 +00:00
2022-05-04 08:44:21 +00:00
postInstall = ''
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
passthru = {
writeCueValidator = callPackage ./validator.nix { };
tests = {
test-001-all-good = callPackage ./tests/001-all-good.nix { };
version = testers.testVersion {
package = cue;
command = "cue version";
2024-04-23 15:42:14 +00:00
version = "v${version}";
};
};
2022-05-04 08:44:21 +00:00
};
meta = with lib; {
2019-11-22 02:08:54 +00:00
description = "Data constraint language which aims to simplify tasks involving defining and using data";
homepage = "https://cuelang.org/";
2024-06-14 11:13:30 +00:00
license = licenses.asl20;
2022-05-04 08:44:21 +00:00
maintainers = with maintainers; [ aaronjheng ];
2024-02-21 14:37:51 +00:00
mainProgram = "cue";
2019-07-06 07:40:02 +00:00
};
2020-05-16 17:15:28 +00:00
}