nixpkgs/pkgs/development/libraries/stlport/default.nix
Eelco Dolstra 3389f4bc36 * Copy lots of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=4623
2006-01-30 16:04:03 +00:00

12 lines
235 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "STLport-5.0.0";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/STLport-5.0.0.tar.bz2;
md5 = "5aefcbb0c30a91d50bb2d6c7b30e8393";
};
}