zsh-artisan: init at 0-unstable-2025-12-08 (#526144)

This commit is contained in:
Matt Sturgeon
2026-07-13 22:13:17 +00:00
committed by GitHub
2 changed files with 45 additions and 0 deletions
+7
View File
@@ -8853,6 +8853,13 @@
githubId = 345808;
name = "Jakub Okoński";
};
FatBoyXPC = {
name = "FatBoyXPC";
email = "fatboyxpc@gmail.com";
github = "FatBoyXPC";
githubId = 744962;
keys = [ { fingerprint = "0E08 1B81 CBCA 1CF7 9568 A13F C4ED 3CA2 3211 8969"; } ];
};
faukah = {
github = "faukah";
name = "faukah";
+38
View File
@@ -0,0 +1,38 @@
{
lib,
stdenvNoCC,
fetchFromGitHub,
}:
stdenvNoCC.mkDerivation {
pname = "zsh-artisan";
version = "0-unstable-2025-12-08";
src = fetchFromGitHub {
owner = "jessarcher";
repo = "zsh-artisan";
rev = "4063d53fd310f715c7a8fb7d4e133812ef0b3128";
hash = "sha256-O0Tn9zQWR0i7UWJ9VtOvxjqpqz9Sj7aKogdHZSOATC0=";
};
__structuredAttrs = true;
strictDeps = true;
installPhase = ''
runHook preInstall
install -D artisan.plugin.zsh --target-directory=$out/share/zsh-artisan
runHook postInstall
'';
meta = {
description = "Laravel artisan plugin for zsh";
longDescription = ''
Laravel artisan plugin for zsh to help you to run artisan from anywhere in the project tree,
with auto-completion, and it can automatically open files created by artisan!
'';
homepage = "https://github.com/jessarcher/zsh-artisan";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.FatBoyXPC ];
};
}