lol

Merge pull request #234462 from hitsmaxft/add_antidote

antidote: init at 1.8.6

authored by

Pol Dellaiera and committed by
GitHub
37a6711c 382388c9

+41
+6
maintainers/maintainer-list.nix
··· 6382 6382 fingerprint = "45A9 9917 578C D629 9F5F B5B4 C22D 4DE4 D7B3 2D19"; 6383 6383 }]; 6384 6384 }; 6385 + hitsmaxft = { 6386 + name = "Bhe Hongtyu"; 6387 + email = "mfthits@gmail.com"; 6388 + github = "hitsmaxft"; 6389 + githubId = 352727; 6390 + }; 6385 6391 hjones2199 = { 6386 6392 email = "hjones2199@gmail.com"; 6387 6393 github = "hjones2199";
+33
pkgs/shells/zsh/antidote/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation (finalAttrs: { 4 + version = "1.8.6"; 5 + pname = "antidote"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "mattmc3"; 9 + repo = "antidote"; 10 + rev = "v${finalAttrs.version}"; 11 + hash = "sha256-CcWEXvz1TB6LFu9qvkVB1LJsa68grK16VqjUTiuVG/c="; 12 + }; 13 + 14 + dontPatch = true; 15 + dontBuild = true; 16 + dontConfigure = true; 17 + dontFixup = true; 18 + 19 + installPhase = '' 20 + runHook preInstall 21 + install -D antidote --target-directory=$out/share/antidote 22 + install -D antidote.zsh --target-directory=$out/share/antidote 23 + install -D functions/* --target-directory=$out/share/antidote/functions 24 + runHook postInstall 25 + ''; 26 + 27 + meta = { 28 + description = "A zsh plugin manager made from the ground up thinking about performance"; 29 + homepage = "https://getantidote.github.io/"; 30 + license = lib.licenses.mit; 31 + maintainers = [ lib.maintainers.hitsmaxft ]; 32 + }; 33 + })
+2
pkgs/top-level/all-packages.nix
··· 6002 6002 6003 6003 antibody = callPackage ../shells/zsh/antibody { }; 6004 6004 6005 + antidote = callPackage ../shells/zsh/antidote { }; 6006 + 6005 6007 antigen = callPackage ../shells/zsh/antigen { }; 6006 6008 6007 6009 apparix = callPackage ../tools/misc/apparix { };