mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
nnn: init at 1.2
This commit is contained in:
parent
57f394572d
commit
c2a37617ea
2 changed files with 33 additions and 0 deletions
31
pkgs/applications/misc/nnn/default.nix
Normal file
31
pkgs/applications/misc/nnn/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
{ stdenv, fetchFromGitHub, pkgconfig, ncurses, readline, conf ? null }:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "nnn-${version}";
|
||||||
|
version = "1.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jarun";
|
||||||
|
repo = "nnn";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1idrwm02218q7qd2pg2m8ld76bg32wbzl8y1h8ch7gzxihgn4559";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3364,6 +3364,8 @@ with pkgs;
|
||||||
graphicalSupport = true;
|
graphicalSupport = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nnn = callPackage ../applications/misc/nnn { };
|
||||||
|
|
||||||
notify-osd = callPackage ../applications/misc/notify-osd { };
|
notify-osd = callPackage ../applications/misc/notify-osd { };
|
||||||
|
|
||||||
nox = callPackage ../tools/package-management/nox {
|
nox = callPackage ../tools/package-management/nox {
|
||||||
|
|
Loading…
Reference in a new issue