nixpkgs/pkgs/development/libraries/SDL/default.nix
Eelco Dolstra 0fc44c5e5e * SDL updated to 1.2.8.
svn path=/nixpkgs/trunk/; revision=3315
2005-07-12 11:28:43 +00:00

12 lines
253 B
Nix

{stdenv, fetchurl, x11}:
stdenv.mkDerivation {
name = "SDL-1.2.8";
src = fetchurl {
url = http://www.libsdl.org/release/SDL-1.2.8.tar.gz;
md5 = "37aaf9f069f9c2c18856022f35de9f8c";
};
buildInputs = [x11];
patches = [./no-cxx.patch];
}