1{stdenv, fetchurl}:
2
3stdenv.mkDerivation {
4
5 name = "tm-0.4.1";
6
7 installPhase=''make install "PREFIX=$out"'';
8
9 patchPhase = ''
10 sed -i 's@/usr/bin/install@install@g ; s/gcc/cc/g' Makefile
11 '';
12
13 src = fetchurl {
14 url = http://vicerveza.homeunix.net/~viric/soft/tm/tm-0.4.1.tar.gz;
15 sha256 = "3b389bc03b6964ad5ffa57a344b891fdbcf7c9b2604adda723a863f83657c4a0";
16 };
17
18 meta = with stdenv.lib; {
19 homepage = http://vicerveza.homeunix.net/~viric/soft/tm;
20 description = "Terminal mixer - multiplexer for the i/o of terminal applications";
21 license = licenses.gpl2;
22 maintainers = with maintainers; [ viric ];
23 platforms = platforms.all;
24 };
25
26}