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

39 lines
1.2 KiB
Nix
Raw Normal View History

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