lol

zsh-edit: init at unstable-2022-05-05

+35
+33
pkgs/shells/zsh/zsh-edit/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "zsh-edit"; 5 + version = "unstable-2022-05-05"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "marlonrichert"; 9 + repo = "zsh-edit"; 10 + rev = "4a8fa599792b6d52eadbb3921880a40872013d28"; 11 + sha256 = "PI4nvzB/F0mHlc0UZJdD49vjzB6pXhhJYNTSmBhY8iU="; 12 + }; 13 + 14 + strictDeps = true; 15 + 16 + dontBuild = true; 17 + 18 + installPhase = '' 19 + outdir=$out/share/zsh/${pname} 20 + install -D zsh-edit.plugin.zsh $outdir/zsh-edit.plugin.zsh 21 + install -D _bind $outdir/_bind 22 + install -d $outdir/functions 23 + install -D functions/{,.edit}* $outdir/functions 24 + ''; 25 + 26 + meta = with lib; { 27 + homepage = "https://github.com/marlonrichert/zsh-edit"; 28 + description = "A set of powerful extensions to the Zsh command line editor"; 29 + license = licenses.mit; 30 + maintainers = with maintainers; [ deejayem ]; 31 + platforms = platforms.all; 32 + }; 33 + }
+2
pkgs/top-level/all-packages.nix
··· 13373 13373 13374 13374 zsh-clipboard = callPackage ../shells/zsh/zsh-clipboard { }; 13375 13375 13376 + zsh-edit = callPackage ../shells/zsh/zsh-edit { }; 13377 + 13376 13378 zsh-git-prompt = callPackage ../shells/zsh/zsh-git-prompt { }; 13377 13379 13378 13380 zsh-history = callPackage ../shells/zsh/zsh-history { };