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