nnn: 2.8.1 -> 2.9

This commit is contained in:
Oleksii Filonenko 2020-01-15 12:06:06 +02:00
parent c7a7d95878
commit 35c4234afc
No known key found for this signature in database
GPG key ID: F3510FE5691629A1

View file

@ -4,17 +4,17 @@ with stdenv.lib;
stdenv.mkDerivation rec {
pname = "nnn";
version = "2.8.1";
version = "2.9";
src = fetchFromGitHub {
owner = "jarun";
repo = pname;
rev = "v${version}";
sha256 = "0h7j0wcpwwd2fibggr1nwkqpvhv2i1qnk54c4x6hixx31yidy2l0";
sha256 = "1pifrcrc8fh85b8h8x01hih9wfclb95sf38s443bs3gip1zdrlk3";
};
configFile = optionalString (conf!=null) (builtins.toFile "nnn.h" conf);
preBuild = optionalString (conf!=null) "cp ${configFile} nnn.h";
configFile = optionalString (conf != null) (builtins.toFile "nnn.h" conf);
preBuild = optionalString (conf != null) "cp ${configFile} nnn.h";
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ readline ncurses ];
@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Small ncurses-based file browser forked from noice";
homepage = https://github.com/jarun/nnn;
homepage = "https://github.com/jarun/nnn";
license = licenses.bsd2;
platforms = platforms.all;
maintainers = with maintainers; [ jfrankenau ];