Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / navi / default.nix
blob4049f95b1949d36558f410c093e0a11b99adc9eb
1 { stdenv, fetchFromGitHub, lib, makeWrapper, rustPlatform, wget, libiconv, withFzf ? true, fzf }:
3 rustPlatform.buildRustPackage rec {
4   pname = "navi";
5   version = "2.22.1";
7   src = fetchFromGitHub {
8     owner = "denisidoro";
9     repo = "navi";
10     rev = "v${version}";
11     sha256 = "sha256-dlK7R9T1AezNr3+5Or8XYAMRlnnXejIs9jXAjwTuvd8=";
12   };
14   cargoHash = "sha256-nastb6dsBGM8zIQ/WCfQy3Y50kH3J1dM/vnkOe/q95A=";
16   nativeBuildInputs = [ makeWrapper ];
18   buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
20   postInstall = ''
21     wrapProgram $out/bin/navi \
22       --prefix PATH : "$out/bin" \
23       --prefix PATH : ${lib.makeBinPath([ wget ] ++ lib.optionals withFzf [ fzf ])}
24   '';
26   checkFlags = [
27     # error: Found argument '--test-threads' which wasn't expected, or isn't valid in this context
28     "--skip=test_parse_variable_line"
29    ];
31   meta = with lib; {
32     description = "An interactive cheatsheet tool for the command-line and application launchers";
33     homepage = "https://github.com/denisidoro/navi";
34     license = licenses.asl20;
35     platforms = platforms.unix;
36     maintainers = with maintainers; [ cust0dian ];
37   };