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

32 lines
859 B
Nix
Raw Normal View History

2017-07-03 21:14:38 +03:00
{ stdenv, fetchFromGitHub, pkgconfig, ncurses, readline, conf ? null }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "nnn-${version}";
2017-07-28 20:09:55 +03:00
version = "1.3";
2017-07-03 21:14:38 +03:00
src = fetchFromGitHub {
owner = "jarun";
repo = "nnn";
rev = "v${version}";
2017-07-28 20:09:55 +03:00
sha256 = "0w9i9vwyqgsi64b5mk4rhmr5gvnnb24c98321r0j5hb0ghdcp96s";
2017-07-03 21:14:38 +03:00
};
configFile = optionalString (conf!=null) (builtins.toFile "config.def.h" conf);
preBuild = optionalString (conf!=null) "cp ${configFile} config.def.h";
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 ];
};
}