2021-12-08 04:20:00 +00:00
|
|
|
{ stdenv, fetchFromGitHub, lib, makeWrapper, rustPlatform, wget, libiconv, withFzf ? true, fzf }:
|
2020-08-01 20:17:55 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "navi";
|
2021-12-07 16:45:28 +00:00
|
|
|
version = "2.18.0";
|
2020-08-01 20:17:55 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "denisidoro";
|
|
|
|
repo = "navi";
|
|
|
|
rev = "v${version}";
|
2021-12-07 16:45:28 +00:00
|
|
|
sha256 = "sha256-JG0MZrvpx+cAFcZJK05GUI10PG53UmxjJjveAZA7k/M=";
|
2020-08-01 20:17:55 +01:00
|
|
|
};
|
|
|
|
|
2021-12-07 16:45:28 +00:00
|
|
|
cargoSha256 = "sha256-S2DBzeir6+JS1jfVxCQ68v4Rl7UBpghbtE+wdu341xw=";
|
2020-08-01 20:17:55 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
2021-04-12 05:20:00 +01:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
|
|
|
|
|
2020-08-01 20:17:55 +01:00
|
|
|
postInstall = ''
|
2020-09-15 14:48:50 +01:00
|
|
|
wrapProgram $out/bin/navi \
|
|
|
|
--prefix PATH : "$out/bin" \
|
2021-12-08 04:20:00 +00:00
|
|
|
--prefix PATH : ${lib.makeBinPath([ wget ] ++ lib.optionals withFzf [ fzf ])}
|
2020-08-01 20:17:55 +01:00
|
|
|
'';
|
|
|
|
|
2021-09-25 12:14:01 +01:00
|
|
|
checkFlags = [
|
|
|
|
# error: Found argument '--test-threads' which wasn't expected, or isn't valid in this context
|
|
|
|
"--skip=test_parse_variable_line"
|
|
|
|
];
|
|
|
|
|
2020-08-01 20:17:55 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "An interactive cheatsheet tool for the command-line and application launchers";
|
|
|
|
homepage = "https://github.com/denisidoro/navi";
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ cust0dian ];
|
|
|
|
};
|
|
|
|
}
|