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

39 lines
1.2 KiB
Nix
Raw Normal View History

2019-02-19 16:26:02 +01:00
{ stdenv, fetchFromGitHub, pkgconfig, ncurses, readline, conf ? null }:
2017-07-03 20:14:38 +02:00
with stdenv.lib;
stdenv.mkDerivation rec {
2019-05-28 11:03:29 +02:00
pname = "nnn";
version = "2.8.1";
2017-07-03 20:14:38 +02:00
src = fetchFromGitHub {
owner = "jarun";
2019-05-28 11:03:29 +02:00
repo = pname;
2017-07-03 20:14:38 +02:00
rev = "v${version}";
sha256 = "0h7j0wcpwwd2fibggr1nwkqpvhv2i1qnk54c4x6hixx31yidy2l0";
2017-07-03 20:14:38 +02:00
};
2017-10-26 11:30:32 +02:00
configFile = optionalString (conf!=null) (builtins.toFile "nnn.h" conf);
preBuild = optionalString (conf!=null) "cp ${configFile} nnn.h";
2017-07-03 20:14:38 +02:00
nativeBuildInputs = [ pkgconfig ];
2019-02-19 16:26:02 +01:00
buildInputs = [ readline ncurses ];
2017-07-03 20:14:38 +02:00
makeFlags = [ "DESTDIR=${placeholder "out"}" "PREFIX=" ];
2017-07-03 20:14:38 +02:00
2019-01-04 03:32:23 +01: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
2019-01-04 03:32:23 +01:00
'';
2017-07-03 20:14:38 +02: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 ];
};
}