summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorPasquale <p3dimaria@hotmail.it>2020-01-21 12:38:22 +0100
committerPasquale <p3dimaria@hotmail.it>2020-01-21 12:38:22 +0100
commit341097c8cf55dc0ccd178fc13866339546f6dd55 (patch)
treee290fa287c666a7691b3e8caafca08cb422f7f2d /pkgs/shells
parent236d744df7a75abd65143b3f5f8adda33fee1440 (diff)
downloadnixpkgs-341097c8cf55dc0ccd178fc13866339546f6dd55.tar
nixpkgs-341097c8cf55dc0ccd178fc13866339546f6dd55.tar.gz
nixpkgs-341097c8cf55dc0ccd178fc13866339546f6dd55.tar.bz2
nixpkgs-341097c8cf55dc0ccd178fc13866339546f6dd55.tar.lz
nixpkgs-341097c8cf55dc0ccd178fc13866339546f6dd55.tar.xz
nixpkgs-341097c8cf55dc0ccd178fc13866339546f6dd55.tar.zst
nixpkgs-341097c8cf55dc0ccd178fc13866339546f6dd55.zip
zsh-bd: init at 2018-07-04
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/zsh/zsh-bd/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/shells/zsh/zsh-bd/default.nix b/pkgs/shells/zsh/zsh-bd/default.nix
new file mode 100644
index 00000000000..b5b66af6ca3
--- /dev/null
+++ b/pkgs/shells/zsh/zsh-bd/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchFromGitHub}:
+
+stdenv.mkDerivation rec {
+  pname = "zsh-bd";
+  version = "2018-07-04";
+
+  src = fetchFromGitHub {
+    owner = "Tarrasch";
+    repo = pname;
+    rev = "d4a55e661b4c9ef6ae4568c6abeff48bdf1b1af7";
+    sha256 = "020f8nq86g96cps64hwrskppbh2dapfw2m9np1qbs5pgh16z4fcb";
+  };
+
+  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 = stdenv.lib.licenses.free;
+
+    platforms = stdenv.lib.platforms.unix;
+    maintainers = [ stdenv.lib.maintainers.olejorgenb ];
+  };
+}