nixpkgs/pkgs/tools/system/tm/default.nix
Lluís Batlle i Rossell d213d290a6 Setting tm and ts to build in all nixpkgs platforms.
svn path=/nixpkgs/trunk/; revision=20446
2010-03-05 23:26:49 +00:00

25 lines
654 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "tm-0.4.1";
installPhase=''make install "PREFIX=$out"'';
patchPhase = ''sed -i 's@/usr/bin/install@install@g' Makefile'';
src = fetchurl {
url = http://vicerveza.homeunix.net/~viric/soft/tm/tm-0.4.1.tar.gz;
sha256 = "3b389bc03b6964ad5ffa57a344b891fdbcf7c9b2604adda723a863f83657c4a0";
};
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];
platforms = with stdenv.lib.platforms; all;
};
}