3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/file-managers/nnn/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
1.8 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, installShellFiles
, makeWrapper
, pkg-config
, file
, ncurses
, readline
, which
2022-08-22 20:49:53 +01:00
, musl-fts
# options
, conf ? null
, withIcons ? false
, withNerdIcons ? false
}:
2017-07-03 19:14:38 +01:00
# Mutually exclusive options
assert withIcons -> withNerdIcons == false;
assert withNerdIcons -> withIcons == false;
2017-07-03 19:14:38 +01:00
2022-11-24 16:48:37 +00:00
stdenv.mkDerivation (finalAttrs: {
2019-05-28 10:03:29 +01:00
pname = "nnn";
2022-11-24 16:48:37 +00:00
version = "4.7";
2017-07-03 19:14:38 +01:00
src = fetchFromGitHub {
owner = "jarun";
2022-11-24 16:48:37 +00:00
repo = "nnn";
rev = "v${finalAttrs.version}";
hash = "sha256-ttG0aEqMlNyJaMhcVfrxbxlrhr1GSydrV58CYSq4CTM=";
2017-07-03 19:14:38 +01:00
};
configFile = lib.optionalString (conf != null) (builtins.toFile "nnn.h" conf);
2022-11-24 16:48:37 +00:00
preBuild = lib.optionalString (conf != null) "cp ${finalAttrs.configFile} src/nnn.h";
2017-07-03 19:14:38 +01:00
nativeBuildInputs = [ installShellFiles makeWrapper pkg-config ];
2022-08-22 20:49:53 +01:00
buildInputs = [ readline ncurses ] ++ lib.optional stdenv.hostPlatform.isMusl musl-fts;
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isMusl "-I${musl-fts}/include";
NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isMusl "-lfts";
2017-07-03 19:14:38 +01:00
2022-11-24 16:48:37 +00:00
makeFlags = [ "PREFIX=$(out)" ]
++ lib.optionals withIcons [ "O_ICONS=1" ]
++ lib.optionals withNerdIcons [ "O_NERD=1" ];
2017-07-03 19:14:38 +01:00
binPath = lib.makeBinPath [ file which ];
2019-01-04 02:32:23 +00: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-13 07:38:37 +01:00
wrapProgram $out/bin/nnn --prefix PATH : "$binPath"
2019-01-04 02:32:23 +00:00
'';
meta = with lib; {
2017-07-03 19:14:38 +01:00
description = "Small ncurses-based file browser forked from noice";
2020-01-15 10:06:06 +00:00
homepage = "https://github.com/jarun/nnn";
2021-03-15 19:58:07 +00:00
changelog = "https://github.com/jarun/nnn/blob/v${version}/CHANGELOG";
2017-07-03 19:14:38 +01:00
license = licenses.bsd2;
platforms = platforms.all;
maintainers = with maintainers; [ jfrankenau Br1ght0ne ];
2017-07-03 19:14:38 +01:00
};
2022-11-24 16:48:37 +00:00
})