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