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

32 lines
845 B
Nix
Raw Normal View History

2017-07-03 18:14:38 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, ncurses, readline, conf ? null }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "nnn-${version}";
2017-10-26 09:30:32 +00:00
version = "1.5";
2017-07-03 18:14:38 +00:00
src = fetchFromGitHub {
owner = "jarun";
repo = "nnn";
rev = "v${version}";
2017-10-26 09:30:32 +00:00
sha256 = "10gcbklh0cp12293lzlwcplj0in90p95x4fyvg1smg4cxamkibvn";
2017-07-03 18:14:38 +00:00
};
2017-10-26 09:30:32 +00:00
configFile = optionalString (conf!=null) (builtins.toFile "nnn.h" conf);
preBuild = optionalString (conf!=null) "cp ${configFile} nnn.h";
2017-07-03 18:14:38 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ncurses readline ];
installFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
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 ];
};
}