nixpkgs/pkgs/development/tools/goconvey/default.nix
Vincent Demeester deb7841016
goconvey: init at 1.6.3
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2018-01-02 11:19:41 +01:00

26 lines
727 B
Nix

{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "goconvey-${version}";
version = "1.6.3";
goPackagePath = "github.com/smartystreets/goconvey";
excludedPackages = "web/server/watch/integration_testing";
goDeps = ./deps.nix;
src = fetchFromGitHub {
owner = "smartystreets";
repo = "goconvey";
rev = "${version}";
sha256 = "1ph18rkl3ns3fgin5i4j54w5a69grrmf3apcsmnpdn1wlrbs3dxh";
};
meta = {
description = "Go testing in the browser. Integrates with `go test`. Write behavioral tests in Go.";
homepage = https://github.com/smartystreets/goconvey;
maintainers = with stdenv.lib.maintainers; [ vdemeester ];
license = stdenv.lib.licenses.mit;
};
}