2020-03-27 08:33:21 +01:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2019-06-23 04:03:47 +02:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "conftest";
|
2020-04-01 12:10:40 +02:00
|
|
|
version = "0.18.1";
|
2019-09-18 23:59:36 +02:00
|
|
|
|
2019-06-23 04:03:47 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "instrumenta";
|
|
|
|
repo = "conftest";
|
|
|
|
rev = "v${version}";
|
2020-04-01 12:10:40 +02:00
|
|
|
sha256 = "0ial1zs5aqcwza813ny6zqn9ybq6ibrqjmaccwbbam1k9f5rplqv";
|
2019-06-23 04:03:47 +02:00
|
|
|
};
|
|
|
|
|
2020-04-01 12:10:40 +02:00
|
|
|
modSha256 = "17j5fhgwfpyg9r7a5g9rmvkaz510xx9s4mbl1cmyzysvddc6f5wp";
|
2019-09-10 21:15:34 +02:00
|
|
|
|
2019-06-23 04:03:47 +02:00
|
|
|
buildFlagsArray = ''
|
|
|
|
-ldflags=
|
|
|
|
-X main.version=${version}
|
|
|
|
'';
|
|
|
|
|
2020-03-27 08:33:21 +01:00
|
|
|
meta = with lib; {
|
2019-06-23 04:03:47 +02:00
|
|
|
description = "Write tests against structured configuration data";
|
2020-03-14 05:21:19 +01:00
|
|
|
homepage = "https://github.com/instrumenta/conftest";
|
2019-06-23 04:03:47 +02:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ yurrriq ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|