Added Transformers 0.4

svn path=/nixpkgs/trunk/; revision=4405
This commit is contained in:
Martin Bravenboer
2005-12-22 07:39:06 +00:00
parent c564d6dbb2
commit 83afd0c173
7 changed files with 61 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
. $stdenv/setup
tar jxvf $src
mkdir $out
mkdir $out/include
cd STLport
cp -prv stlport $out/include

View File

@@ -0,0 +1,13 @@
{stdenv, fetchurl, patches ? []}:
stdenv.mkDerivation {
name = "STLport-5.0.0";
builder = ./builder.sh;
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/stlport/STLport-5.0.0.tar.bz2;
md5 = "5aefcbb0c30a91d50bb2d6c7b30e8393";
};
inherit patches;
}