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

39 lines
1.2 KiB
Nix
Raw Normal View History

2019-02-19 15:26:02 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, ncurses, readline, conf ? null }:
2017-07-03 18:14:38 +00:00
with stdenv.lib;
stdenv.mkDerivation rec {
2019-05-28 09:03:29 +00:00
pname = "nnn";
2020-11-17 04:46:47 +00:00
version = "3.5";
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}";
2020-11-17 04:46:47 +00:00
sha256 = "1fa7cmwrzn6kx87kms8i98p9azdlwyh2gnif29l340syl9hkr5qy";
2017-07-03 18:14:38 +00:00
};
2020-01-15 10:06:06 +00:00
configFile = optionalString (conf != null) (builtins.toFile "nnn.h" conf);
2020-02-23 08:45:42 +00:00
preBuild = optionalString (conf != null) "cp ${configFile} src/nnn.h";
2017-07-03 18:14:38 +00:00
nativeBuildInputs = [ pkgconfig ];
2019-02-19 15:26:02 +00:00
buildInputs = [ readline ncurses ];
2017-07-03 18:14:38 +00:00
makeFlags = [ "DESTDIR=${placeholder "out"}" "PREFIX=" ];
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
2019-01-04 02:32:23 +00:00
'';
2017-07-03 18:14:38 +00:00
meta = {
description = "Small ncurses-based file browser forked from noice";
2020-01-15 10:06:06 +00:00
homepage = "https://github.com/jarun/nnn";
2017-07-03 18:14:38 +00:00
license = licenses.bsd2;
platforms = platforms.all;
2020-01-15 10:07:01 +00:00
maintainers = with maintainers; [ jfrankenau filalex77 ];
2017-07-03 18:14:38 +00:00
};
}