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