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

32 lines
866 B
Nix
Raw Normal View History

2020-08-30 13:21:37 -07:00
{ fetchFromGitHub, fzf, lib, makeWrapper, rustPlatform, wget }:
2020-08-01 12:17:55 -07:00
rustPlatform.buildRustPackage rec {
pname = "navi";
2020-10-17 14:10:45 -07:00
version = "2.12.1";
2020-08-01 12:17:55 -07:00
src = fetchFromGitHub {
owner = "denisidoro";
repo = "navi";
rev = "v${version}";
2020-10-17 14:10:45 -07:00
sha256 = "1vrj8ad004h6jgmcb56f3f19s4xk6gvcpwysj78bxzgpa1998r3r";
2020-08-01 12:17:55 -07:00
};
2020-10-17 14:10:45 -07:00
cargoSha256 = "0yifgcf2pfszzny523ax7pb9a5r3012nynbnhdqg0j1ia1pdymf3";
2020-08-01 12:17:55 -07:00
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
2020-09-15 06:48:50 -07:00
wrapProgram $out/bin/navi \
--prefix PATH : "$out/bin" \
--prefix PATH : ${lib.makeBinPath [ fzf wget ]}
2020-08-01 12:17:55 -07: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 ];
};
}