nixpkgs/pkgs/applications/version-management/git-and-tools/lab/default.nix

28 lines
693 B
Nix
Raw Normal View History

2018-12-15 17:37:35 +03:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
2018-12-17 02:50:34 +03:00
name = "lab-${version}";
version = "0.15.2";
2018-12-15 17:37:35 +03:00
goPackagePath = "github.com/zaquestion/lab";
subPackages = [ "." ];
2018-12-15 17:37:35 +03:00
src = fetchFromGitHub {
owner = "zaquestion";
repo = "lab";
rev = "v${version}";
sha256 = "1210cf6ss4ivm2jxq3k3c34vpra02pl91fpmvqbvw5sm53j7xfaf";
2018-12-15 17:37:35 +03:00
};
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;
};
}