2022-05-03 00:12:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2018-01-02 10:19:41 +00:00
|
|
|
|
2022-05-03 00:12:54 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "goconvey";
|
2024-03-10 22:24:33 +00:00
|
|
|
version = "1.8.1-unstable-2024-03-06";
|
2018-01-02 10:19:41 +00:00
|
|
|
|
|
|
|
excludedPackages = "web/server/watch/integration_testing";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "smartystreets";
|
|
|
|
repo = "goconvey";
|
2024-03-10 22:24:33 +00:00
|
|
|
rev = "a50310f1e3e53e63e2d23eb904f853aa388a5988";
|
|
|
|
hash = "sha256-w5eX/n6Wu2gYgCIhgtjqH3lNckWIDaN4r80cJW3JqFo=";
|
2018-01-02 10:19:41 +00:00
|
|
|
};
|
|
|
|
|
2024-03-10 22:24:33 +00:00
|
|
|
vendorHash = "sha256-P4J/CZY95ks08DC+gSqG+eanL3zoiaoz1d9/ZvBoc9Q=";
|
2022-05-03 00:12:54 +00:00
|
|
|
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
|
2024-01-07 10:10:58 +00:00
|
|
|
checkFlags = [
|
|
|
|
"-short"
|
|
|
|
];
|
2022-05-03 00:12:54 +00:00
|
|
|
|
2018-01-02 10:19:41 +00:00
|
|
|
meta = {
|
2020-10-11 05:55:05 +00:00
|
|
|
description = "Go testing in the browser. Integrates with `go test`. Write behavioral tests in Go";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "goconvey";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/smartystreets/goconvey";
|
2021-01-23 12:26:19 +00:00
|
|
|
license = lib.licenses.mit;
|
2022-05-03 00:12:54 +00:00
|
|
|
maintainers = with lib.maintainers; [ vdemeester ];
|
2018-01-02 10:19:41 +00:00
|
|
|
};
|
|
|
|
}
|