Skip to content

Commit

Permalink
Merge pull request #40742 from worldofpeace/antibody
Browse files Browse the repository at this point in the history
antibody: init at 3.4.6
  • Loading branch information
disassembler committed May 20, 2018
2 parents caa1414 + f434c71 commit be5e8fa
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
@@ -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
Expand Up @@ -1466,6 +1466,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 be5e8fa

Please sign in to comment.