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

32 lines
866 B
Nix
Raw Normal View History

2020-08-30 20:21:37 +00:00
{ fetchFromGitHub, fzf, lib, makeWrapper, rustPlatform, wget }:
2020-08-01 19:17:55 +00:00
rustPlatform.buildRustPackage rec {
pname = "navi";
2020-12-01 03:24:22 +00:00
version = "2.13.0";
2020-08-01 19:17:55 +00:00
src = fetchFromGitHub {
owner = "denisidoro";
repo = "navi";
rev = "v${version}";
2020-12-01 03:24:22 +00:00
sha256 = "04ks38s6d3nkdj0arhxw8f3sfw796l97fbqxsm7b9g5d2953a6cs";
2020-08-01 19:17:55 +00:00
};
2020-12-01 03:24:22 +00:00
cargoSha256 = "1zwar1l793809bsgqnwrgi50y76bd78qd4s8lw6d64f4z72dh80g";
2020-08-01 19:17:55 +00:00
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
2020-09-15 13:48:50 +00:00
wrapProgram $out/bin/navi \
--prefix PATH : "$out/bin" \
--prefix PATH : ${lib.makeBinPath [ fzf wget ]}
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;
maintainers = with maintainers; [ cust0dian ];
};
}