2008-08-21 23:35:14 +02:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
|
|
|
name = "tm-0.4.1";
|
|
|
|
|
|
|
|
installPhase=''make install "PREFIX=$out"'';
|
|
|
|
|
|
|
|
patchPhase = ''sed -i 's@/usr/bin/install@install@g' Makefile'';
|
|
|
|
|
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";
|
|
|
|
};
|
|
|
|
|
2009-10-02 09:39:03 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://vicerveza.homeunix.net/~viric/soft/tm";
|
|
|
|
description = "terminal mixer - multiplexer for the i/o of terminal applications";
|
|
|
|
license="GPLv2";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
2010-03-06 00:26:49 +01:00
|
|
|
platforms = with stdenv.lib.platforms; all;
|
2009-10-02 09:39:03 +02:00
|
|
|
};
|
2008-08-21 23:35:14 +02:00
|
|
|
|
|
|
|
}
|