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

39 lines
1.1 KiB
Nix
Raw Normal View History

2021-04-12 06:20:00 +02:00
{ stdenv, fetchFromGitHub, fzf, lib, makeWrapper, rustPlatform, wget, libiconv }:
2020-08-01 21:17:55 +02:00
rustPlatform.buildRustPackage rec {
pname = "navi";
2021-09-25 13:14:01 +02:00
version = "2.17.0";
2020-08-01 21:17:55 +02:00
src = fetchFromGitHub {
owner = "denisidoro";
repo = "navi";
rev = "v${version}";
2021-09-25 13:14:01 +02:00
sha256 = "sha256-WH8FfQ7cD4aFUi9iE0tR/B+5oWy8tMVmMLxusDwXF7w=";
2020-08-01 21:17:55 +02:00
};
2021-09-25 13:14:01 +02:00
cargoSha256 = "sha256-TH9DNCoUVqH5g05Z4Vdv7F8CCLnaYezupI5FeJhYTaQ=";
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 [ fzf wget ]}
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 ];
};
}