Unverified Commit 37a6711c authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #234462 from hitsmaxft/add_antidote

antidote: init at 1.8.6
parents 382388c9 ae9d6a04
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -6382,6 +6382,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 −0
Original line number Diff line number Diff line
{ 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 ];
  };
})
+2 −0
Original line number Diff line number Diff line
@@ -6002,6 +6002,8 @@ with pkgs;
  antibody = callPackage ../shells/zsh/antibody { };
  antidote = callPackage ../shells/zsh/antidote { };
  antigen = callPackage ../shells/zsh/antigen { };
  apparix = callPackage ../tools/misc/apparix { };