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

28 lines
702 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-06-23 03:03:47 +01:00
buildGoModule rec {
pname = "conftest";
2020-06-26 07:00:43 +01:00
version = "0.19.0";
2019-06-23 03:03:47 +01:00
src = fetchFromGitHub {
owner = "instrumenta";
repo = "conftest";
rev = "v${version}";
2020-06-26 07:00:43 +01:00
sha256 = "0d6n51p4b8jwkfqympwxkqxssgy462m5pgv5qvm6jy5pm566qa08";
2019-06-23 03:03:47 +01:00
};
2020-06-26 07:00:43 +01:00
vendorSha256 = "150fj2c9qll39wiqk41w0qms0sdqiacb2z015j38kg60r8f6i4lm";
2019-06-23 03:03:47 +01:00
buildFlagsArray = ''
-ldflags=
-X main.version=${version}
'';
meta = with lib; {
2019-06-23 03:03:47 +01:00
description = "Write tests against structured configuration data";
2020-03-14 04:21:19 +00:00
homepage = "https://github.com/instrumenta/conftest";
2019-06-23 03:03:47 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ yurrriq ];
platforms = platforms.all;
};
}