summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL/default.nix
blob: ed41431be0675221407943e1d7a39435b5b5ad09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{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];
}