nixpkgs/pkgs/tools/misc/zoxide/default.nix

32 lines
676 B
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, rustPlatform
, fzf
}:
2020-03-10 21:48:38 +00:00
rustPlatform.buildRustPackage rec {
pname = "zoxide";
version = "0.4.1";
2020-03-10 21:48:38 +00:00
src = fetchFromGitHub {
owner = "ajeetdsouza";
repo = "zoxide";
rev = "v${version}";
sha256 = "1zfk9y5f12h2d5zwf2z8c95xwhbhc6ayv971875fbxgz1nd8vqb6";
2020-03-10 21:48:38 +00:00
};
buildInputs = [
fzf
];
cargoSha256 = "0z0p3cxxazw19bmk3zw7z2q93p00ywsa2cz1jhy78mn5pq1v95rd";
2020-03-10 21:48:38 +00:00
meta = with lib; {
2020-03-10 21:48:38 +00:00
description = "A fast cd command that learns your habits";
homepage = "https://github.com/ajeetdsouza/zoxide";
license = with licenses; [ mit ];
2020-03-19 20:21:46 +00:00
maintainers = with maintainers; [ ysndr cole-h ];
2020-03-10 21:48:38 +00:00
platforms = platforms.all;
};
}