2019-02-19 15:26:02 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, ncurses, readline, conf ? null }:
|
2017-07-03 19:14:38 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-28 10:03:29 +01:00
|
|
|
pname = "nnn";
|
2019-10-07 20:16:19 +01:00
|
|
|
version = "2.7";
|
2017-07-03 19:14:38 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jarun";
|
2019-05-28 10:03:29 +01:00
|
|
|
repo = pname;
|
2017-07-03 19:14:38 +01:00
|
|
|
rev = "v${version}";
|
2019-10-07 20:16:19 +01:00
|
|
|
sha256 = "19kiikjblkq3bx2j6h3f2d467p2v582albqr7nbrm9c1yg4qx38z";
|
2017-07-03 19:14:38 +01:00
|
|
|
};
|
|
|
|
|
2017-10-26 10:30:32 +01:00
|
|
|
configFile = optionalString (conf!=null) (builtins.toFile "nnn.h" conf);
|
|
|
|
preBuild = optionalString (conf!=null) "cp ${configFile} nnn.h";
|
2017-07-03 19:14:38 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-02-19 15:26:02 +00:00
|
|
|
buildInputs = [ readline ncurses ];
|
2017-07-03 19:14:38 +01:00
|
|
|
|
2019-01-04 02:25:25 +00:00
|
|
|
makeFlags = [ "DESTDIR=${placeholder "out"}" "PREFIX=" ];
|
2017-07-03 19:14:38 +01:00
|
|
|
|
2019-01-04 02:32:23 +00:00
|
|
|
# shell completions
|
|
|
|
postInstall = ''
|
|
|
|
install -Dm555 scripts/auto-completion/bash/nnn-completion.bash $out/share/bash-completion/completions/nnn.bash
|
|
|
|
install -Dm555 scripts/auto-completion/zsh/_nnn -t $out/share/zsh/site-functions
|
|
|
|
install -Dm555 scripts/auto-completion/fish/nnn.fish -t $out/share/fish/vendor_completions.d
|
|
|
|
'';
|
|
|
|
|
2017-07-03 19:14:38 +01:00
|
|
|
meta = {
|
|
|
|
description = "Small ncurses-based file browser forked from noice";
|
|
|
|
homepage = https://github.com/jarun/nnn;
|
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ jfrankenau ];
|
|
|
|
};
|
|
|
|
}
|