Files
nixpkgs/pkgs/by-name/zs/zsh-defer/package.nix
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

34 lines
742 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation {
pname = "zsh-defer";
version = "0-unstable-2022-06-13";
src = fetchFromGitHub {
owner = "romkatv";
repo = "zsh-defer";
rev = "57a6650ff262f577278275ddf11139673e01e471";
sha256 = "sha256-/rcIS2AbTyGw2HjsLPkHtt50c2CrtAFDnLuV5wsHcLc=";
};
strictDeps = true;
dontConfigure = true;
dontBuild = true;
installPhase = ''
mkdir -p $out/share/zsh-defer
cp zsh-defer* $out/share/zsh-defer
'';
meta = with lib; {
description = "Deferred execution of zsh commands";
homepage = "https://github.com/romkatv/zsh-defer";
license = licenses.gpl3Only;
platforms = platforms.unix;
maintainers = [ maintainers.vinnymeller ];
};
}