2005-08-12 12:23:27 +02:00
|
|
|
{stdenv, fetchurl, libtool, gcc, patches ? []}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "opencxx-2.8";
|
|
|
|
src = fetchurl {
|
2006-01-30 17:04:03 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/opencxx-2.8.tar.gz;
|
2005-08-12 12:23:27 +02:00
|
|
|
md5 = "0f71df82751fe8aba5122d6e0541c98a";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [libtool];
|
|
|
|
NIX_GCC = gcc;
|
|
|
|
|
|
|
|
inherit patches;
|
|
|
|
}
|