biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / shells / zsh / antidote / default.nix
bloba4b29c4bd89196822fdd7b734f618bed166ddfe9
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation (finalAttrs: {
4   version = "1.9.7";
5   pname = "antidote";
7   src = fetchFromGitHub {
8     owner = "mattmc3";
9     repo = "antidote";
10     rev = "v${finalAttrs.version}";
11     hash = "sha256-Gg69O35CpsI3Q3cdxBpRDOfSxRxWG3PHew59kJVH1eQ=";
12   };
14   dontPatch = true;
15   dontBuild = true;
16   dontConfigure = true;
17   dontFixup = true;
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   '';
27   meta = {
28     description = "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     platforms = lib.platforms.all;
33   };