Merge pull request #171329 from aaronjheng/goconvey

goconvey: 1.6.3 -> 1.7.2

authored by Bobby Rong and committed by GitHub 2ed64218 437ebbdb

+12 -29
+12 -9
pkgs/development/tools/goconvey/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 2 3 - buildGoPackage rec { 4 pname = "goconvey"; 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 lib.maintainers; [ vdemeester ]; 23 license = lib.licenses.mit; 24 }; 25 }
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 3 + buildGoModule rec { 4 pname = "goconvey"; 5 + version = "1.7.2"; 6 7 excludedPackages = "web/server/watch/integration_testing"; 8 9 src = fetchFromGitHub { 10 owner = "smartystreets"; 11 repo = "goconvey"; 12 + rev = "v${version}"; 13 + sha256 = "sha256-YT9M9VaLIGUo6pdkaLWLtomcjrDqdnOqwl+C9UwDmT8="; 14 }; 15 16 + vendorSha256 = "sha256-sHyK/4YdNCLCDjxjMKygWAVRnHZ1peYjYRYyEcqoe+E="; 17 + 18 + ldflags = [ "-s" "-w" ]; 19 + 20 + checkFlags = [ "-short" ]; 21 + 22 meta = { 23 description = "Go testing in the browser. Integrates with `go test`. Write behavioral tests in Go"; 24 homepage = "https://github.com/smartystreets/goconvey"; 25 license = lib.licenses.mit; 26 + maintainers = with lib.maintainers; [ vdemeester ]; 27 }; 28 }
-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 - ]
···