mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
zsh-navigation-tools: init at 1.2
This commit is contained in:
parent
52f91a486b
commit
3ed2f6a621
27
pkgs/tools/misc/zsh-navigation-tools/default.nix
Normal file
27
pkgs/tools/misc/zsh-navigation-tools/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "zsh-navigation-tools-${version}";
|
||||
version = "1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "psprint";
|
||||
repo = "zsh-navigation-tools";
|
||||
rev = "v${version}";
|
||||
sha256 = "1p3r8pra88sjcc8b5d7qlz1axsyyspl3835y6mqwia57b9g0fpy8";
|
||||
};
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/zsh/site-functions/
|
||||
cp n-* $out/share/zsh/site-functions/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Curses-based tools for ZSH";
|
||||
homepage = https://github.com/psprint/zsh-navigation-tools;
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ pSub ];
|
||||
};
|
||||
}
|
@ -3657,6 +3657,8 @@ let
|
||||
zpaq = callPackage ../tools/archivers/zpaq { };
|
||||
zpaqd = callPackage ../tools/archivers/zpaq/zpaqd.nix { };
|
||||
|
||||
zsh-navigation-tools = callPackage ../tools/misc/zsh-navigation-tools { };
|
||||
|
||||
zsync = callPackage ../tools/compression/zsync { };
|
||||
|
||||
zxing = callPackage ../tools/graphics/zxing {};
|
||||
|
Loading…
Reference in New Issue
Block a user