2004-05-12 18:10:43 +02:00
|
|
|
{stdenv, fetchurl, aterm, toolbuslib, ptsupport, asfsupport}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2004-01-22 20:55:37 +01:00
|
|
|
name = "asc-support-1.8";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2005-08-22 10:39:27 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/asc-support-1.8.tar.gz;
|
2004-01-22 20:55:37 +01:00
|
|
|
md5 = "e85a790c6004dfb974d79fc9699f69f4";
|
|
|
|
};
|
2004-05-12 18:10:43 +02:00
|
|
|
inherit stdenv aterm ptsupport toolbuslib asfsupport;
|
|
|
|
buildInputs = [stdenv aterm ptsupport toolbuslib asfsupport];
|
2004-01-22 20:55:37 +01:00
|
|
|
}
|