Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

31 lines
759 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation {
pname = "zsh-better-npm-completion";
version = "0-unstable-2019-11-19";
src = fetchFromGitHub {
owner = "lukechilds";
repo = "zsh-better-npm-completion";
rev = "0a7cf042415324ec38a186fdcbc9af163f0d7e69";
sha256 = "16z7k5n1rcl9i61lrm7i5dsqsmhvdp1y4y5ii6hv2xpp470addgy";
};
strictDeps = true;
installPhase = ''
install -Dm 0644 zsh-better-npm-completion.plugin.zsh $out/share/zsh-better-npm-completion
'';
meta = with lib; {
description = "Better completion for npm";
homepage = "https://github.com/lukechilds/zsh-better-npm-completion";
license = licenses.mit;
platforms = platforms.unix;
maintainers = [ maintainers.gerschtli ];
};
}