Added sdf2-bundle 2.4

svn path=/nixpkgs/branches/stdenv-updates/; revision=10382
This commit is contained in:
Yury G. Kudryashov
2008-01-29 13:17:19 +00:00
parent 316b5505cd
commit 1ec43cc340
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{stdenv, fetchurl, aterm, getopt, pkgconfig}:
stdenv.mkDerivation {
name = "sdf2-bundle-2.4";
src = fetchurl {
url = http://buildfarm.st.ewi.tudelft.nl/releases/meta-environment/sdf2-bundle-2.4pre212034-2nspl1xc/sdf2-bundle-2.4.tar.gz;
md5 = "00107bef17d3fb8486575f8974fb384b";
};
buildInputs = [aterm pkgconfig];
propagatedBuildInputs = [getopt];
}