51 lines
881 B
Nix
51 lines
881 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
ncurses,
|
|
customConfig ? null,
|
|
pname,
|
|
version,
|
|
src,
|
|
patches ? [ ],
|
|
}:
|
|
stdenv.mkDerivation {
|
|
|
|
inherit
|
|
pname
|
|
version
|
|
src
|
|
patches
|
|
;
|
|
|
|
env = lib.optionalAttrs stdenv.hostPlatform.isDarwin {
|
|
CFLAGS = "-D_DARWIN_C_SOURCE";
|
|
};
|
|
|
|
postPatch = lib.optionalString (customConfig != null) ''
|
|
cp ${builtins.toFile "config.h" customConfig} ./config.h
|
|
'';
|
|
|
|
nativeBuildInputs = [ ncurses ];
|
|
buildInputs = [ ncurses ];
|
|
|
|
prePatch = ''
|
|
substituteInPlace Makefile \
|
|
--replace /usr/share/terminfo $out/share/terminfo
|
|
'';
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
];
|
|
|
|
meta = {
|
|
description = "Dynamic virtual terminal manager";
|
|
homepage = "http://www.brain-dump.org/projects/dvtm";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|