0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

Merge pull request #245899 from vinnymeller/zsh-defer

zsh-defer: init at unstable-2022-06-13
This commit is contained in:
Emily 2023-08-10 13:11:49 +02:00 committed by GitHub
commit 96a52e8e30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "zsh-defer";
version = "unstable-2022-06-13";
src = fetchFromGitHub {
owner = "romkatv";
repo = pname;
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 ];
};
}

View file

@ -14994,6 +14994,8 @@ with pkgs;
zsh-clipboard = callPackage ../shells/zsh/zsh-clipboard { };
zsh-defer = callPackage ../shells/zsh/zsh-defer { };
zsh-edit = callPackage ../shells/zsh/zsh-edit { };
zsh-git-prompt = callPackage ../shells/zsh/zsh-git-prompt { };