lol

goconvey: init at 1.6.3

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

+47
+25
pkgs/development/tools/goconvey/default.nix
··· 1 + { stdenv, lib, buildGoPackage, fetchFromGitHub }: 2 + 3 + buildGoPackage rec { 4 + name = "goconvey-${version}"; 5 + version = "1.6.3"; 6 + 7 + goPackagePath = "github.com/smartystreets/goconvey"; 8 + excludedPackages = "web/server/watch/integration_testing"; 9 + 10 + goDeps = ./deps.nix; 11 + 12 + src = fetchFromGitHub { 13 + owner = "smartystreets"; 14 + repo = "goconvey"; 15 + rev = "${version}"; 16 + sha256 = "1ph18rkl3ns3fgin5i4j54w5a69grrmf3apcsmnpdn1wlrbs3dxh"; 17 + }; 18 + 19 + meta = { 20 + description = "Go testing in the browser. Integrates with `go test`. Write behavioral tests in Go."; 21 + homepage = https://github.com/smartystreets/goconvey; 22 + maintainers = with stdenv.lib.maintainers; [ vdemeester ]; 23 + license = stdenv.lib.licenses.mit; 24 + }; 25 + }
+20
pkgs/development/tools/goconvey/deps.nix
··· 1 + [ 2 + { 3 + goPackagePath = "github.com/jtolds/gls"; 4 + fetch = { 5 + type = "git"; 6 + url = "https://github.com/jtolds/gls"; 7 + rev = "77f18212c9c7edc9bd6a33d383a7b545ce62f064"; 8 + sha256 = "1vm37pvn0k4r6d3m620swwgama63laz8hhj3pyisdhxwam4m2g1h"; 9 + }; 10 + } 11 + { 12 + goPackagePath = "github.com/smartystreets/assertions"; 13 + fetch = { 14 + type = "git"; 15 + url = "https://github.com/smartystreets/assertions"; 16 + rev = "0b37b35ec7434b77e77a4bb29b79677cced992ea"; 17 + sha256 = "1j0adgbykl55rf2945g0n5bmqdsnjcqlx5dcmpfh4chki43hiwg9"; 18 + }; 19 + } 20 + ]
+2
pkgs/top-level/all-packages.nix
··· 13108 13108 13109 13109 gocode = callPackage ../development/tools/gocode { }; 13110 13110 13111 + goconvey = callPackage ../development/tools/goconvey { }; 13112 + 13111 13113 gotags = callPackage ../development/tools/gotags { }; 13112 13114 13113 13115 golint = callPackage ../development/tools/golint { };