Added pt-support 1.0

svn path=/nixpkgs/trunk/; revision=706
This commit is contained in:
Martin Bravenboer
2004-01-22 18:57:34 +00:00
parent 3d0e24c639
commit 362cba8ada
3 changed files with 31 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
#! /bin/sh
buildinputs="$aterm $getopt $toolbuslib"
. $stdenv/setup || exit 1
tar zxf $src || exit 1
cd pt-support-* || exit 1
./configure --prefix=$out --with-aterm=$aterm --with-toolbuslib=$toolbuslib || exit 1
make install || exit 1

View File

@@ -0,0 +1,12 @@
{stdenv, fetchurl, aterm, toolbuslib}: derivation {
name = "pt-support-1.0";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = http://www.cwi.nl/projects/MetaEnv/pt-support/pt-support-1.0.tar.gz;
md5 = "cc96dc2bfbaf3f218dfe9a0b8bb4d801";
};
stdenv = stdenv;
aterm = aterm;
toolbuslib = toolbuslib;
}