forked from mirrors/nixpkgs
antidote: init at 1.8.6
This commit is contained in:
parent
3580ac6c65
commit
ae9d6a0429
|
@ -6364,6 +6364,12 @@
|
|||
fingerprint = "45A9 9917 578C D629 9F5F B5B4 C22D 4DE4 D7B3 2D19";
|
||||
}];
|
||||
};
|
||||
hitsmaxft = {
|
||||
name = "Bhe Hongtyu";
|
||||
email = "mfthits@gmail.com";
|
||||
github = "hitsmaxft";
|
||||
githubId = 352727;
|
||||
};
|
||||
hjones2199 = {
|
||||
email = "hjones2199@gmail.com";
|
||||
github = "hjones2199";
|
||||
|
|
33
pkgs/shells/zsh/antidote/default.nix
Normal file
33
pkgs/shells/zsh/antidote/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
version = "1.8.6";
|
||||
pname = "antidote";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mattmc3";
|
||||
repo = "antidote";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-CcWEXvz1TB6LFu9qvkVB1LJsa68grK16VqjUTiuVG/c=";
|
||||
};
|
||||
|
||||
dontPatch = true;
|
||||
dontBuild = true;
|
||||
dontConfigure = true;
|
||||
dontFixup = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
install -D antidote --target-directory=$out/share/antidote
|
||||
install -D antidote.zsh --target-directory=$out/share/antidote
|
||||
install -D functions/* --target-directory=$out/share/antidote/functions
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A zsh plugin manager made from the ground up thinking about performance";
|
||||
homepage = "https://getantidote.github.io/";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.hitsmaxft ];
|
||||
};
|
||||
})
|
|
@ -5973,6 +5973,8 @@ with pkgs;
|
|||
|
||||
antibody = callPackage ../shells/zsh/antibody { };
|
||||
|
||||
antidote = callPackage ../shells/zsh/antidote { };
|
||||
|
||||
antigen = callPackage ../shells/zsh/antigen { };
|
||||
|
||||
apparix = callPackage ../tools/misc/apparix { };
|
||||
|
|
Loading…
Reference in a new issue