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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, lib, makeWrapper, rustPlatform, wget, libiconv, withFzf ? true, fzf }:
2020-08-01 19:17:55 +00:00
rustPlatform.buildRustPackage rec {
pname = "navi";
2023-12-17 05:31:35 +00:00
version = "2.23.0";
2020-08-01 19:17:55 +00:00
src = fetchFromGitHub {
owner = "denisidoro";
repo = "navi";
rev = "v${version}";
2023-12-17 05:31:35 +00:00
sha256 = "sha256-pqBTrHBvsuosyQqCnSiI3+pOe2J6XeIQ8dai+kTVFjc=";
2020-08-01 19:17:55 +00:00
};
2023-12-17 05:31:35 +00:00
cargoHash = "sha256-dx13p+kEyqhyaF8ejJLWsgW3IpEvS9nlIHhjxOpp4d8=";
2020-08-01 19:17:55 +00:00
nativeBuildInputs = [ makeWrapper ];
2021-04-12 04:20:00 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
2020-08-01 19:17:55 +00:00
postInstall = ''
2020-09-15 13:48:50 +00:00
wrapProgram $out/bin/navi \
--prefix PATH : "$out/bin" \
--prefix PATH : ${lib.makeBinPath([ wget ] ++ lib.optionals withFzf [ fzf ])}
2020-08-01 19:17:55 +00:00
'';
2021-09-25 11:14:01 +00: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 19:17:55 +00: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;
2023-12-05 18:20:03 +00:00
mainProgram = "navi";
2020-08-01 19:17:55 +00:00
maintainers = with maintainers; [ cust0dian ];
};
}