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

33 lines
806 B
Nix
Raw Normal View History

2020-05-25 12:20:00 +03:00
{ stdenv
, fetchFromGitHub
, rustPlatform
2020-05-25 12:20:00 +03:00
, withFzf ? true, fzf
}:
2020-03-11 00:48:38 +03:00
rustPlatform.buildRustPackage rec {
pname = "zoxide";
version = "0.4.1";
2020-03-11 00:48:38 +03:00
src = fetchFromGitHub {
owner = "ajeetdsouza";
repo = "zoxide";
rev = "v${version}";
sha256 = "1zfk9y5f12h2d5zwf2z8c95xwhbhc6ayv971875fbxgz1nd8vqb6";
2020-03-11 00:48:38 +03:00
};
2020-05-25 12:20:00 +03:00
postPatch = stdenv.lib.optionalString withFzf ''
substituteInPlace src/fzf.rs \
--replace '"fzf"' '"${fzf}/bin/fzf"'
'';
2020-03-11 00:48:38 +03:00
cargoSha256 = "0z0p3cxxazw19bmk3zw7z2q93p00ywsa2cz1jhy78mn5pq1v95rd";
2020-03-11 00:48:38 +03:00
2020-05-25 12:20:00 +03:00
meta = with stdenv.lib; {
2020-03-11 00:48:38 +03:00
description = "A fast cd command that learns your habits";
homepage = "https://github.com/ajeetdsouza/zoxide";
license = with licenses; [ mit ];
2020-03-19 23:21:46 +03:00
maintainers = with maintainers; [ ysndr cole-h ];
2020-03-11 00:48:38 +03:00
platforms = platforms.all;
};
}