Skip to content

Commit

Permalink
antibody: init at 3.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
worldofpeace committed May 19, 2018
1 parent dd73ab0 commit f434c71
Show file tree
Hide file tree
Showing 3 changed files with 110 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/shells/zsh/antibody/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
name = "antibody-${version}";
version = "3.4.6";
rev = "v${version}";

goPackagePath = "github.com/getantibody/antibody";

src = fetchFromGitHub {
inherit rev;
owner = "getantibody";
repo = "antibody";
sha256 = "0pvsngvlxv5iw7yj18snslag8c61ji4w3j3rw543ckl6k3f9zq6c";
};

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 ];
};
}
83 changes: 83 additions & 0 deletions pkgs/shells/zsh/antibody/deps.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1453,6 +1453,8 @@ with pkgs;
utillinux = utillinuxMinimal;
};

antibody = callPackage ../shells/zsh/antibody { };

antigen = callPackage ../shells/zsh/antigen { };

apparix = callPackage ../tools/misc/apparix { };
Expand Down

0 comments on commit f434c71

Please sign in to comment.