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

36 lines
829 B
Nix
Raw Normal View History

{ buildGoModule, fetchFromGitHub, lib }:
2019-07-06 07:40:02 +00:00
buildGoModule rec {
pname = "cue";
version = "0.4.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}";
sha256 = "1q1mkqb6fk515g556yn8ks3gqrimfbadprmbv5rill1lpipq5xbj";
2019-07-06 07:40:02 +00:00
};
vendorSha256 = "12p77a97lbff6qhncs5qx13k3wmf9hrr09mhh12isw5s0p0n53xm";
2019-07-06 07:40:02 +00:00
checkPhase = "go test ./...";
2019-07-06 07:40:02 +00:00
subPackages = [ "cmd/cue" ];
2021-08-26 06:45:51 +00:00
ldflags = [
"-s" "-w" "-X cuelang.org/go/cmd/cue/cmd.version=${version}"
2019-07-06 07:40:02 +00:00
];
doInstallCheck = true;
installCheckPhase = ''
$out/bin/cue eval - <<<'a: "all good"' > /dev/null
'';
2019-07-06 07:40:02 +00:00
meta = {
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/";
maintainers = [];
license = lib.licenses.asl20;
2019-07-06 07:40:02 +00:00
};
2020-05-16 17:15:28 +00:00
}