2016-06-27 19:05:38 +00:00
|
|
|
{ stdenv, fetchurl, ncurses, customConfig ? null }:
|
2014-01-01 13:55:49 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-06-27 19:05:38 +00:00
|
|
|
|
2016-02-08 05:09:29 +00:00
|
|
|
name = "dvtm-0.15";
|
2014-01-01 13:55:49 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/${name}.tar.gz";
|
2016-02-08 05:09:29 +00:00
|
|
|
sha256 = "0475w514b7i3gxk6khy8pfj2gx9l7lv2pwacmq92zn1abv01a84g";
|
2014-01-01 13:55:49 +00:00
|
|
|
};
|
|
|
|
|
2016-06-27 19:05:38 +00:00
|
|
|
postPatch = stdenv.lib.optionalString (customConfig != null) ''
|
|
|
|
cp ${builtins.toFile "config.h" customConfig} ./config.h
|
|
|
|
'';
|
|
|
|
|
2014-01-01 13:55:49 +00:00
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace /usr/share/terminfo $out/share/terminfo
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
make PREFIX=$out install
|
|
|
|
'';
|
2016-08-02 14:41:28 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Dynamic virtual terminal manager";
|
|
|
|
homepage = http://www.brain-dump.org/projects/dvtm;
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.vrthra ];
|
|
|
|
};
|
2014-01-01 13:55:49 +00:00
|
|
|
}
|