gitAndTools.lab: init at 0.14.0

This commit is contained in:
Mario Rodas
2018-12-15 09:38:27 -05:00
parent 468a1d7aba
commit 5451116321
3 changed files with 354 additions and 0 deletions
@@ -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;
};
}