nixpkgs/pkgs/shells/zsh/antibody/default.nix

26 lines
627 B
Nix
Raw Normal View History

2018-05-18 13:59:36 -07:00
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "antibody-${version}";
2018-06-09 15:14:54 -07:00
version = "3.5.0";
2018-05-18 13:59:36 -07:00
rev = "v${version}";
goPackagePath = "github.com/getantibody/antibody";
src = fetchFromGitHub {
inherit rev;
owner = "getantibody";
repo = "antibody";
2018-06-09 15:14:54 -07:00
sha256 = "0x9wfki7cl3cm9h21zj37196gwdzgllfgqmgy9n86m82wbla6slb";
2018-05-18 13:59:36 -07: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 ];
};
}