zoxide: init at 0.2.0

This commit is contained in:
Yannik Sander 2020-03-10 22:48:38 +01:00 committed by Alyssa Ross
parent 711a86973f
commit 130aef631c
2 changed files with 31 additions and 1 deletions

@ -0,0 +1,28 @@
{ stdenv, fetchFromGitHub, rustPlatform, fzf }:
rustPlatform.buildRustPackage rec {
pname = "zoxide";
version = "0.2.0";
src = fetchFromGitHub {
owner = "ajeetdsouza";
repo = "zoxide";
rev = "v${version}";
sha256 = "0s0zrkn48rgsf2fqpgsl0kix4l6w7k7pwssvdja6y3a4c097qmnm";
};
buildInputs = [
# Example Run-time Additional Dependencies
fzf
];
cargoSha256 = "1p65ml2qj5dpc6nczfvf341fk7y4yi5ma1x6kfr3d32wnv6m4hgh";
meta = with stdenv.lib; {
description = "A fast cd command that learns your habits";
homepage = "https://github.com/ajeetdsouza/zoxide";
license = with licenses; [ mit ];
maintainers = with maintainers; [ ysndr ];
platforms = platforms.all;
};
}

@ -3080,6 +3080,8 @@ in
zeek = callPackage ../applications/networking/ids/zeek { };
zoxide = callPackage ../tools/misc/zoxide { };
zzuf = callPackage ../tools/security/zzuf { };
### DEVELOPMENT / EMSCRIPTEN
@ -3500,7 +3502,7 @@ in
fuse-7z-ng = callPackage ../tools/filesystems/fuse-7z-ng { };
fuse-overlayfs = callPackage ../tools/filesystems/fuse-overlayfs {};
fusee-interfacee-tk = callPackage ../applications/misc/fusee-interfacee-tk { };
fusee-launcher = callPackage ../development/tools/fusee-launcher { };