dvtm-unstable: init at 2018-03-31

This commit is contained in:
Luke Clifton
2018-11-21 16:55:32 +08:00
parent db0abe98bf
commit 9c37c5f4d3
4 changed files with 65 additions and 30 deletions
+30
View File
@@ -0,0 +1,30 @@
{ stdenv, ncurses, customConfig ? null, name, src, patches ? [] }:
stdenv.mkDerivation rec {
inherit name src patches;
CFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-D_DARWIN_C_SOURCE";
postPatch = stdenv.lib.optionalString (customConfig != null) ''
cp ${builtins.toFile "config.h" customConfig} ./config.h
'';
buildInputs = [ ncurses ];
prePatch = ''
substituteInPlace Makefile \
--replace /usr/share/terminfo $out/share/terminfo
'';
installPhase = ''
make PREFIX=$out install
'';
meta = with stdenv.lib; {
description = "Dynamic virtual terminal manager";
homepage = http://www.brain-dump.org/projects/dvtm;
license = licenses.mit;
maintainers = [ maintainers.vrthra ];
platforms = platforms.unix;
};
}