Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
774 B
Nix
37 lines
774 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "zsh-bd";
|
|
version = "2018-07-04";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Tarrasch";
|
|
repo = "zsh-bd";
|
|
rev = "d4a55e661b4c9ef6ae4568c6abeff48bdf1b1af7";
|
|
sha256 = "020f8nq86g96cps64hwrskppbh2dapfw2m9np1qbs5pgh16z4fcb";
|
|
};
|
|
|
|
strictDeps = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/zsh-bd
|
|
cp {.,$out/share/zsh-bd}/bd.zsh
|
|
cd $out/share/zsh-bd
|
|
ln -s bd{,.plugin}.zsh
|
|
'';
|
|
|
|
meta = {
|
|
description = "Jump back to a specific directory, without doing `cd ../../..`";
|
|
homepage = "https://github.com/Tarrasch/zsh-bd";
|
|
license = lib.licenses.free;
|
|
|
|
platforms = lib.platforms.unix;
|
|
maintainers = [ lib.maintainers.olejorgenb ];
|
|
};
|
|
}
|