2018-12-15 14:37:35 +00:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
2018-12-16 23:50:34 +00:00
|
|
|
name = "lab-${version}";
|
2018-12-15 14:37:35 +00:00
|
|
|
version = "0.14.0";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/zaquestion/lab";
|
|
|
|
|
2019-01-30 10:04:42 +00:00
|
|
|
subPackages = [ "." ];
|
|
|
|
|
2018-12-15 14:37:35 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|