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

49 lines
1.7 KiB
Nix
Raw Normal View History

2021-04-13 06:38:37 +00:00
{ lib, stdenv, fetchFromGitHub, pkg-config, makeWrapper, ncurses, readline
, archivemount, atool, fzf, libarchive, rclone, sshfs, unzip, vlock
, conf ? null, withIcons ? false, withNerdIcons ? false }:
2017-07-03 18:14:38 +00:00
# Mutually exclusive options
assert withIcons -> withNerdIcons == false;
assert withNerdIcons -> withIcons == false;
2017-07-03 18:14:38 +00:00
stdenv.mkDerivation rec {
2019-05-28 09:03:29 +00:00
pname = "nnn";
2021-04-13 06:38:37 +00:00
version = "4.0";
2017-07-03 18:14:38 +00:00
src = fetchFromGitHub {
owner = "jarun";
2019-05-28 09:03:29 +00:00
repo = pname;
2017-07-03 18:14:38 +00:00
rev = "v${version}";
2021-04-13 06:38:37 +00:00
sha256 = "0cbxgss9j0bvsp3czjx1kpm9id7c5xxmjfnvjyk3pfd69ygif2kl";
2017-07-03 18:14:38 +00:00
};
configFile = lib.optionalString (conf != null) (builtins.toFile "nnn.h" conf);
preBuild = lib.optionalString (conf != null) "cp ${configFile} src/nnn.h";
2017-07-03 18:14:38 +00:00
2021-04-13 06:38:37 +00:00
nativeBuildInputs = [ pkg-config makeWrapper ];
2019-02-19 15:26:02 +00:00
buildInputs = [ readline ncurses ];
2017-07-03 18:14:38 +00:00
2021-03-15 19:58:07 +00:00
makeFlags = [ "PREFIX=$(out)" ]
++ lib.optional withIcons [ "O_ICONS=1" ]
++ lib.optional withNerdIcons [ "O_NERD=1" ];
2017-07-03 18:14:38 +00:00
2019-01-04 02:32:23 +00:00
# shell completions
postInstall = ''
install -Dm555 misc/auto-completion/bash/nnn-completion.bash $out/share/bash-completion/completions/nnn.bash
install -Dm555 misc/auto-completion/zsh/_nnn -t $out/share/zsh/site-functions
install -Dm555 misc/auto-completion/fish/nnn.fish -t $out/share/fish/vendor_completions.d
2021-04-13 06:38:37 +00:00
wrapProgram $out/bin/nnn \
--prefix PATH : ${lib.makeBinPath [ archivemount atool fzf libarchive rclone sshfs unzip vlock ]}
2019-01-04 02:32:23 +00:00
'';
meta = with lib; {
2017-07-03 18:14:38 +00:00
description = "Small ncurses-based file browser forked from noice";
2020-01-15 10:06:06 +00:00
homepage = "https://github.com/jarun/nnn";
2021-03-15 19:58:07 +00:00
changelog = "https://github.com/jarun/nnn/blob/v${version}/CHANGELOG";
2017-07-03 18:14:38 +00:00
license = licenses.bsd2;
platforms = platforms.all;
maintainers = with maintainers; [ jfrankenau Br1ght0ne ];
2017-07-03 18:14:38 +00:00
};
}