about summary refs log tree commit diff
path: root/pkgs/development/tools/gotestsum
diff options
context:
space:
mode:
authorDanielle Lancashire <dani@builds.terrible.systems>2019-08-31 10:09:32 +0200
committerDanielle Lancashire <dani@builds.terrible.systems>2019-08-31 10:09:32 +0200
commit1c9253ce2b512bbe625a6fafbae58228498f42fb (patch)
tree8e940d2271b4f270ced46f6c6bf6ee03c15a9a54 /pkgs/development/tools/gotestsum
parentc3c8f17439bc3aa4313c1137f99c3160b60825c4 (diff)
downloadnixlib-1c9253ce2b512bbe625a6fafbae58228498f42fb.tar
nixlib-1c9253ce2b512bbe625a6fafbae58228498f42fb.tar.gz
nixlib-1c9253ce2b512bbe625a6fafbae58228498f42fb.tar.bz2
nixlib-1c9253ce2b512bbe625a6fafbae58228498f42fb.tar.lz
nixlib-1c9253ce2b512bbe625a6fafbae58228498f42fb.tar.xz
nixlib-1c9253ce2b512bbe625a6fafbae58228498f42fb.tar.zst
nixlib-1c9253ce2b512bbe625a6fafbae58228498f42fb.zip
gotestsum: Init at 0.3.5
Diffstat (limited to 'pkgs/development/tools/gotestsum')
-rw-r--r--pkgs/development/tools/gotestsum/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/tools/gotestsum/default.nix b/pkgs/development/tools/gotestsum/default.nix
new file mode 100644
index 000000000000..36e41bddf25d
--- /dev/null
+++ b/pkgs/development/tools/gotestsum/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchFromGitHub, buildGoModule }:
+
+buildGoModule rec {
+  pname = "gotestsum";
+  version = "0.3.5";
+
+  src = fetchFromGitHub {
+    owner = "gotestyourself";
+    repo = "gotestsum";
+    rev = "v${version}";
+    sha256 = "1d4sbvk9wqzl3g3da8inqdkvd43rkwvmq969jlgl1k1agv5xjxqv";
+  };
+
+  modSha256 = "1dgs643pmcw68yc003zss52hbvsy6hxzwkrhr0qmsqkmzxryb3bn";
+
+  meta = with stdenv.lib; {
+    homepage = "https://github.com/gotestyourself/gotestsum";
+    description = "A human friendly `go test` runner";
+    platforms = platforms.linux ++ platforms.darwin;
+    license = licenses.asl20;
+    maintainers = with maintainers; [ endocrimes ];
+  };
+}