Added toolbuslib and toolbus packages

svn path=/nixpkgs/trunk/; revision=4677
This commit is contained in:
Merijn de Jonge
2006-02-02 16:21:09 +00:00
parent 6386871030
commit d1d0f290ad
6 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
source $stdenv/setup
PATH=$aterm/bin:$PATH
set
tar xvfz $src
cd toolbuslib-*
./configure --prefix=$out
make
make install

View File

@@ -0,0 +1,11 @@
{stdenv, fetchurl, aterm} :
stdenv.mkDerivation {
name = "toolbuslib-0.7.2";
builder = ./builder.sh;
src = fetchurl {
url = http://www.cwi.nl/projects/MetaEnv/toolbuslib/toolbuslib-0.7.2.tar.gz;
md5 = "6619a155c6326d728d53c6901558e350";
};
inherit aterm;
}

View File

@@ -0,0 +1 @@
(import ../../../../pkgs/system/i686-linux.nix).toolbuslib