svn path=/nixpkgs/trunk/; revision=5873
This commit is contained in:
Armijn Hemel 2006-07-22 11:34:58 +00:00
parent cf58746d10
commit d034a7ec00
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,5 @@
source $stdenv/setup
configureFlags="--with-tcl=$tcl/lib"
genericBuild

View File

@ -0,0 +1,13 @@
{stdenv, fetchurl, which, tcl, tk, x11}:
stdenv.mkDerivation {
name = "amsn-0.96rc1";
builder = ./builder.sh;
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/amsn/amsn-0.96rc1.tar.bz2;
md5 = "1b90fdbb0a51c7646f4d2e6b22f18711";
};
inherit tcl;
buildInputs = [which tcl tk x11];
}