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

34 lines
943 B
Nix
Raw Permalink Normal View History

2021-04-12 04:20:00 +00:00
{ stdenv, fetchFromGitHub, fzf, lib, makeWrapper, rustPlatform, wget, libiconv }:
2020-08-01 19:17:55 +00:00
rustPlatform.buildRustPackage rec {
pname = "navi";
2021-05-12 09:59:35 +00:00
version = "2.16.0";
2020-08-01 19:17:55 +00:00
src = fetchFromGitHub {
owner = "denisidoro";
repo = "navi";
rev = "v${version}";
2021-05-12 09:59:35 +00:00
sha256 = "sha256-ngSZFYGE+Varul/qwavMO3xcMIp8w2WETWXc573wYhQ=";
2020-08-01 19:17:55 +00:00
};
2021-05-12 09:59:35 +00:00
cargoSha256 = "sha256-qtxFTk0iCxPa4Z7H9+QWSii+iYrLUV2LfiAEbePdhOQ=";
2020-08-01 19:17:55 +00:00
nativeBuildInputs = [ makeWrapper ];
2021-04-12 04:20:00 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
2020-08-01 19:17:55 +00:00
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 ];
};
}