3
0
Fork 0
forked from mirrors/nixpkgs

Update stlport to 5.2.0.

svn path=/nixpkgs/trunk/; revision=13558
This commit is contained in:
Valentin David 2008-12-02 16:51:39 +00:00
parent 848753c764
commit 0720af543a
2 changed files with 3 additions and 12 deletions

View file

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

View file

@ -1,11 +1,10 @@
{stdenv, fetchurl}: {stdenv, fetchurl}:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "STLport-5.0.0"; name = "STLport-5.2.0";
builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = mirror://sourceforge/stlport/STLport-5.0.0.tar.bz2; url = mirror://sourceforge/stlport/STLport-5.2.0.tar.bz2;
md5 = "5aefcbb0c30a91d50bb2d6c7b30e8393"; md5 = "448d74859407912c0087adcf51bf109a";
}; };
} }