3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/navi/default.nix

32 lines
866 B
Nix
Raw Normal View History

2020-08-30 21:21:37 +01:00
{ fetchFromGitHub, fzf, lib, makeWrapper, rustPlatform, wget }:
2020-08-01 20:17:55 +01:00
rustPlatform.buildRustPackage rec {
pname = "navi";
2021-01-15 15:35:26 +00:00
version = "2.13.1";
2020-08-01 20:17:55 +01:00
src = fetchFromGitHub {
owner = "denisidoro";
repo = "navi";
rev = "v${version}";
2021-01-15 15:35:26 +00:00
sha256 = "0nzjcahnx637m24xhzgrhvaic52b1bqx6lkklmy8xlbka7i2xid2";
2020-08-01 20:17:55 +01:00
};
2021-01-15 15:35:26 +00:00
cargoSha256 = "12xyh57b6lblplh87fw1cvfwzkx9bz9qbhii34n4yzfzp6sv530n";
2020-08-01 20:17:55 +01:00
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
2020-09-15 14:48:50 +01:00
wrapProgram $out/bin/navi \
--prefix PATH : "$out/bin" \
--prefix PATH : ${lib.makeBinPath [ fzf wget ]}
2020-08-01 20:17:55 +01: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 ];
};
}