Added aterm 2.5

svn path=/nixpkgs/branches/stdenv-updates/; revision=10381
This commit is contained in:
Yury G. Kudryashov 2008-01-29 13:17:02 +00:00
parent 378a59a7b8
commit 316b5505cd
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,14 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "aterm-2.5";
src = fetchurl {
url = http://buildfarm.st.ewi.tudelft.nl/releases/meta-environment/aterm-2.5pre21238-l2q7rg38/aterm-2.5.tar.gz;
md5 = "33ddcb1a229baf406ad1f603eb1d5995";
};
meta = {
homepage = http://www.cwi.nl/htbin/sen1/twiki/bin/view/SEN1/ATerm;
license = "LGPL";
description = "Library for manipulation of term data structures in C";
};
}

View File

@ -1731,6 +1731,10 @@ rec {
inherit fetchurl stdenv;
};
aterm25 = import ../development/libraries/aterm/2.5.nix {
inherit fetchurl stdenv;
};
attr = import ../development/libraries/attr {
inherit stdenv fetchurl autoconf libtool gettext;
};