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

61 lines
1.6 KiB
Nix
Raw Normal View History

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