about summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-and-tools/lab/default.nix
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2018-12-17 00:41:43 +0100
committerGitHub <noreply@github.com>2018-12-17 00:41:43 +0100
commit2453b5ea7999218f7af3ea8f0895895b70b21d1e (patch)
tree9b9ef5c5d0e380722ae03ec77e04c64a02c5eff9 /pkgs/applications/version-management/git-and-tools/lab/default.nix
parentdba9200127560264c5dafebacd715da9c834d91d (diff)
parent5451116321a66c5012fd4c72b0a77c526ca685ab (diff)
downloadnixlib-2453b5ea7999218f7af3ea8f0895895b70b21d1e.tar
nixlib-2453b5ea7999218f7af3ea8f0895895b70b21d1e.tar.gz
nixlib-2453b5ea7999218f7af3ea8f0895895b70b21d1e.tar.bz2
nixlib-2453b5ea7999218f7af3ea8f0895895b70b21d1e.tar.lz
nixlib-2453b5ea7999218f7af3ea8f0895895b70b21d1e.tar.xz
nixlib-2453b5ea7999218f7af3ea8f0895895b70b21d1e.tar.zst
nixlib-2453b5ea7999218f7af3ea8f0895895b70b21d1e.zip
Merge pull request #52236 from marsam/init-lab
gitAndTools.lab: init at 0.14.0
Diffstat (limited to 'pkgs/applications/version-management/git-and-tools/lab/default.nix')
-rw-r--r--pkgs/applications/version-management/git-and-tools/lab/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/version-management/git-and-tools/lab/default.nix b/pkgs/applications/version-management/git-and-tools/lab/default.nix
new file mode 100644
index 000000000000..fdda6ff4e88b
--- /dev/null
+++ b/pkgs/applications/version-management/git-and-tools/lab/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, buildGoPackage, fetchFromGitHub }:
+
+buildGoPackage rec {
+  name = "hub-${version}";
+  version = "0.14.0";
+
+  goPackagePath = "github.com/zaquestion/lab";
+
+  src = fetchFromGitHub {
+    owner = "zaquestion";
+    repo = "lab";
+    rev = "v${version}";
+    sha256 = "0dqahzm721kpps4i33qgk78y982n8gj5afpk73qyzbraf5y3cw92";
+  };
+
+  goDeps = ./deps.nix;
+
+  meta = with stdenv.lib; {
+    description = "Lab wraps Git or Hub, making it simple to clone, fork, and interact with repositories on GitLab";
+    homepage = https://zaquestion.github.io/lab;
+    license = licenses.unlicense;
+    maintainers = [ maintainers.marsam ];
+    platforms = platforms.all;
+  };
+}