2018-07-20 17:44:44 -07:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2018-05-18 13:59:36 -07:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-02-21 16:45:48 -08:00
|
|
|
pname = "antibody";
|
|
|
|
version = "4.1.0";
|
2018-08-05 12:00:55 -07:00
|
|
|
|
2018-05-18 13:59:36 -07:00
|
|
|
goPackagePath = "github.com/getantibody/antibody";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-02-21 16:45:48 -08:00
|
|
|
owner = "getantibody";
|
|
|
|
repo = "antibody";
|
2018-12-01 19:20:04 -08:00
|
|
|
rev = "v${version}";
|
2019-02-21 16:45:48 -08:00
|
|
|
sha256 = "027qh535cpk5mbxav199vvzhwfkcs0lm7skgfhshpzps1yw4w4mb";
|
2018-05-18 13:59:36 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "The fastest shell plugin manager";
|
2018-12-01 19:20:04 -08:00
|
|
|
homepage = https://github.com/getantibody/antibody;
|
|
|
|
license = licenses.mit;
|
2018-05-18 13:59:36 -07:00
|
|
|
maintainers = with maintainers; [ worldofpeace ];
|
|
|
|
};
|
|
|
|
}
|