2021-01-10 23:54:33 -08:00
|
|
|
{lib, stdenv, fetchurl}:
|
2008-08-21 14:35:14 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
|
|
|
name = "tm-0.4.1";
|
|
|
|
|
|
|
|
installPhase=''make install "PREFIX=$out"'';
|
|
|
|
|
2016-08-11 22:07:13 -07:00
|
|
|
patchPhase = ''
|
|
|
|
sed -i 's@/usr/bin/install@install@g ; s/gcc/cc/g' Makefile
|
|
|
|
'';
|
2008-08-21 14:35:14 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-31 18:11:51 -07:00
|
|
|
url = "http://vicerveza.homeunix.net/~viric/soft/tm/tm-0.4.1.tar.gz";
|
2008-08-21 14:35:14 -07:00
|
|
|
sha256 = "3b389bc03b6964ad5ffa57a344b891fdbcf7c9b2604adda723a863f83657c4a0";
|
|
|
|
};
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://vicerveza.homeunix.net/~viric/soft/tm";
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "Terminal mixer - multiplexer for the i/o of terminal applications";
|
2015-05-28 10:20:29 -07:00
|
|
|
license = licenses.gpl2;
|
2015-05-27 12:56:04 -07:00
|
|
|
maintainers = with maintainers; [ viric ];
|
2015-11-17 12:29:29 -08:00
|
|
|
platforms = platforms.all;
|
2009-10-02 00:39:03 -07:00
|
|
|
};
|
2008-08-21 14:35:14 -07:00
|
|
|
|
|
|
|
}
|