tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
bash-preexec: refactor
Tom Hunze
4 months ago
d41b40c7
c197c5fb
+9
-8
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ba
bash-preexec
package.nix
+9
-8
pkgs/by-name/ba/bash-preexec/package.nix
···
15
src = fetchFromGitHub {
16
owner = "rcaloras";
17
repo = "bash-preexec";
18
-
rev = version;
19
-
sha256 = "sha256-4DzbeIiUX7iXy2CeSvRC2X+XnjVk+/UiMbM/dLHx7zU=";
20
};
21
22
nativeCheckInputs = [ bats ];
···
50
runHook postInstall
51
'';
52
53
-
meta = with lib; {
54
description = "Preexec and precmd functions for Bash just like Zsh";
55
-
license = licenses.mit;
56
homepage = "https://github.com/rcaloras/bash-preexec";
57
-
maintainers = [
58
-
maintainers.hawkw
59
-
maintainers.rycee
0
60
];
61
-
platforms = platforms.unix;
62
};
63
}
···
15
src = fetchFromGitHub {
16
owner = "rcaloras";
17
repo = "bash-preexec";
18
+
tag = version;
19
+
hash = "sha256-4DzbeIiUX7iXy2CeSvRC2X+XnjVk+/UiMbM/dLHx7zU=";
20
};
21
22
nativeCheckInputs = [ bats ];
···
50
runHook postInstall
51
'';
52
53
+
meta = {
54
description = "Preexec and precmd functions for Bash just like Zsh";
55
+
license = lib.licenses.mit;
56
homepage = "https://github.com/rcaloras/bash-preexec";
57
+
changelog = "https://github.com/rcaloras/bash-preexec/releases/tag/${version}";
58
+
maintainers = with lib.maintainers; [
59
+
hawkw
60
+
rycee
61
];
62
+
platforms = lib.platforms.unix;
63
};
64
}