summary refs log tree commit diff
path: root/pkgs/development/tools/goconvey/default.nix
diff options
context:
space:
mode:
authorVincent Demeester <vincent@sbr.pm>2018-01-02 11:19:41 +0100
committerVincent Demeester <vincent@sbr.pm>2018-01-02 11:19:41 +0100
commitdeb78410168ab7952e6884cf9cd2b90381309b40 (patch)
tree6c65cec598c7ecde06a4d8a1ef1e3ae78eb462d0 /pkgs/development/tools/goconvey/default.nix
parenta0be858835267656ac634386cabc946e5bec0fef (diff)
downloadnixlib-deb78410168ab7952e6884cf9cd2b90381309b40.tar
nixlib-deb78410168ab7952e6884cf9cd2b90381309b40.tar.gz
nixlib-deb78410168ab7952e6884cf9cd2b90381309b40.tar.bz2
nixlib-deb78410168ab7952e6884cf9cd2b90381309b40.tar.lz
nixlib-deb78410168ab7952e6884cf9cd2b90381309b40.tar.xz
nixlib-deb78410168ab7952e6884cf9cd2b90381309b40.tar.zst
nixlib-deb78410168ab7952e6884cf9cd2b90381309b40.zip
goconvey: init at 1.6.3
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat (limited to 'pkgs/development/tools/goconvey/default.nix')
-rw-r--r--pkgs/development/tools/goconvey/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/tools/goconvey/default.nix b/pkgs/development/tools/goconvey/default.nix
new file mode 100644
index 000000000000..e4ef9d26da25
--- /dev/null
+++ b/pkgs/development/tools/goconvey/default.nix
@@ -0,0 +1,25 @@
+{ 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;
+  };
+}