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