1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 03:48:57 +00:00
nixpkgs/pkgs/shells/zsh/antibody/default.nix

25 lines
582 B
Nix
Raw Normal View History

{ 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 ];
};
}