nixpkgs/pkgs/development/tools/cue/default.nix
Scott Olson cdad975ce0 remove solson as maintainer
I don't actively use either of these packages. I kept myself in the
maintainers list because I expect to maintain new packages in the
future.
2021-06-01 20:13:31 +01:00

30 lines
705 B
Nix

{ buildGoModule, fetchgit, lib }:
buildGoModule rec {
pname = "cue";
version = "0.4.0";
src = fetchgit {
url = "https://cue.googlesource.com/cue";
rev = "v${version}";
sha256 = "sha256-rcGEl+CMFyxZKsOKhVimhv5/ONo3xS6FjgKModZGR2o=";
};
vendorSha256 = "sha256-eSKVlBgnHR1R0j1lNwtFoIgRuj8GqoMbvuBl/N1SanY=";
doCheck = false;
subPackages = [ "cmd/cue" ];
buildFlagsArray = [
"-ldflags=-s -w -X cuelang.org/go/cmd/cue/cmd.version=${version}"
];
meta = {
description = "A data constraint language which aims to simplify tasks involving defining and using data";
homepage = "https://cuelang.org/";
maintainers = [];
license = lib.licenses.asl20;
};
}