nixpkgs/pkgs/applications/misc/navi/default.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, lib, makeWrapper, rustPlatform, wget, libiconv, withFzf ? true, fzf }:
2020-08-01 21:17:55 +02:00
rustPlatform.buildRustPackage rec {
pname = "navi";
2022-07-25 17:19:17 +02:00
version = "2.20.1";
2020-08-01 21:17:55 +02:00
src = fetchFromGitHub {
owner = "denisidoro";
repo = "navi";
rev = "v${version}";
2022-07-25 17:19:17 +02:00
sha256 = "sha256-uu82KG2RHEP0PstoYB4eWZWFjlousT40A1XAaBfkjFE=";
2020-08-01 21:17:55 +02:00
};
2022-07-25 17:19:17 +02:00
cargoSha256 = "sha256-gpHeyxLcDqwi96BWF6Hwlb27JG2LSUgfsE4FTB1vIoQ=";
2020-08-01 21:17:55 +02:00
nativeBuildInputs = [ makeWrapper ];
2021-04-12 06:20:00 +02:00
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
2020-08-01 21:17:55 +02:00
postInstall = ''
2020-09-15 15:48:50 +02:00
wrapProgram $out/bin/navi \
--prefix PATH : "$out/bin" \
--prefix PATH : ${lib.makeBinPath([ wget ] ++ lib.optionals withFzf [ fzf ])}
2020-08-01 21:17:55 +02:00
'';
2021-09-25 13:14:01 +02: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 21:17:55 +02: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 ];
};
}