1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-22 22:49:47 -04:00
nixpkgs/pkgs/development/libraries/stlport/default.nix

12 lines
230 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "STLport-5.0.0";
builder = ./builder.sh;
src = fetchurl {
url = mirror://sourceforge/stlport/STLport-5.0.0.tar.bz2;
md5 = "5aefcbb0c30a91d50bb2d6c7b30e8393";
};
}