diff options
| author | Alejandro Soto <alejandro@34project.org> | 2025-07-03 20:20:28 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2025-07-03 20:23:00 -0600 |
| commit | 293fbf7a4bfc85888172aecead945f6b110e67d1 (patch) | |
| tree | 2bba9cf2cb9932723c9f02ef6c0e34bd07106f74 /pkgs/pass-tail | |
| parent | 892119d00c4c5e53ea1ce3aa80c6ccc5055c7b82 (diff) | |
home/pass: enable pass-tail
Diffstat (limited to '')
| -rw-r--r-- | pkgs/pass-tail/default.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/pass-tail/default.nix b/pkgs/pass-tail/default.nix new file mode 100644 index 0000000..61f207c --- /dev/null +++ b/pkgs/pass-tail/default.nix @@ -0,0 +1,24 @@ +{ fetchFromGitHub +, lib +, stdenv +}: +stdenv.mkDerivation { + pname = "pass-tail"; + version = "master-20220426"; + + src = fetchFromGitHub { + repo = "pass-extension-tail"; + owner = "palortoff"; + + rev = "e8455bc0ada9b25722d2826063b1dfdc521d5b24"; + hash = "sha256-62jTEbNuNZr6g6zvqUdfeseGNnn8Z1s3cY7i5U+a4PU="; + }; + + installPhase = '' + runHook preInstall + + make install PREFIX=$out BASHCOMPDIR=$out/share/bash-completion/completions + + runHook postInstall + ''; +} |
