blob: b0704065901b14e52512c16c3f9203c7c20b90b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{ lib, stdenv, fetchFromGitHub}:
stdenv.mkDerivation rec {
pname = "zsh-bd";
version = "2018-07-04";
src = fetchFromGitHub {
owner = "Tarrasch";
repo = pname;
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 ];
};
}
|