1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation (finalAttrs: {
7 src = fetchFromGitHub {
10 rev = "v${finalAttrs.version}";
11 hash = "sha256-Gg69O35CpsI3Q3cdxBpRDOfSxRxWG3PHew59kJVH1eQ=";
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
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;