1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

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.mkDerivation {
name = "STLport-5.0.0";
builder = ./builder.sh;
name = "STLport-5.2.0";
src = fetchurl {
url = mirror://sourceforge/stlport/STLport-5.0.0.tar.bz2;
md5 = "5aefcbb0c30a91d50bb2d6c7b30e8393";
url = mirror://sourceforge/stlport/STLport-5.2.0.tar.bz2;
md5 = "448d74859407912c0087adcf51bf109a";
};
}