83afd0c173
svn path=/nixpkgs/trunk/; revision=4405
14 lines
289 B
Nix
14 lines
289 B
Nix
{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;
|
|
}
|