2018-07-21 01:44:44 +01:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2018-05-18 21:59:36 +01:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "antibody-${version}";
|
2018-10-06 14:32:50 +01:00
|
|
|
version = "3.7.0";
|
2018-05-18 21:59:36 +01:00
|
|
|
rev = "v${version}";
|
2018-08-05 20:00:55 +01:00
|
|
|
|
2018-05-18 21:59:36 +01:00
|
|
|
goPackagePath = "github.com/getantibody/antibody";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
inherit rev;
|
|
|
|
owner = "getantibody";
|
|
|
|
repo = "antibody";
|
2018-10-06 14:32:50 +01:00
|
|
|
sha256 = "1c7f0b1lgl4pm3cs39kr6dgr19lfykjhamg74k5ryrizag0j68l5";
|
2018-05-18 21:59:36 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "The fastest shell plugin manager";
|
|
|
|
homepage = https://github.com/getantibody/antibody;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ worldofpeace ];
|
|
|
|
};
|
|
|
|
}
|