tm (terminal mixer), ts (task spooler) added, provided by viric
svn path=/nixpkgs/trunk/; revision=12688
This commit is contained in:
parent
01979f7940
commit
3091c81082
21
pkgs/tools/system/tm/default.nix
Normal file
21
pkgs/tools/system/tm/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{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";
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
20
pkgs/tools/system/ts/default.nix
Normal file
20
pkgs/tools/system/ts/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{stdenv, fetchurl}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
|
||||||
|
name = "ts-0.6";
|
||||||
|
|
||||||
|
installPhase=''make install "PREFIX=$out"'';
|
||||||
|
|
||||||
|
patchPhase = ''sed -i 's@/usr/bin/install@install@g' Makefile; set -x'';
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://vicerveza.homeunix.net/~viric/soft/ts/ts-0.6.tar.gz;
|
||||||
|
sha256 = "663df09f9a6e6491f7924b1cdf8a5d00546c736ec3f5f1135ccccb83bf4f2ce8";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = { homepage = "http://vicerveza.homeunix.net/~viric/soft/ts";
|
||||||
|
description = "task spooler - batch queue";
|
||||||
|
license="GPLv2";
|
||||||
|
};
|
||||||
|
}
|
@ -1142,10 +1142,18 @@ let pkgs = rec {
|
|||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
tm = import ../tools/system/tm {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
trang = import ../tools/text/xml/trang {
|
trang = import ../tools/text/xml/trang {
|
||||||
inherit fetchurl stdenv unzip jre;
|
inherit fetchurl stdenv unzip jre;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ts = import ../tools/system/ts {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
transfig = import ../tools/graphics/transfig {
|
transfig = import ../tools/graphics/transfig {
|
||||||
inherit fetchurl stdenv libpng libjpeg zlib;
|
inherit fetchurl stdenv libpng libjpeg zlib;
|
||||||
inherit (xlibs) imake;
|
inherit (xlibs) imake;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user