summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL_net/default.nix
blob: cbca42ef5df857a75d3b40400045617e5a7d7512 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, SDL }:

stdenv.mkDerivation rec {
  pname = "SDL_net";
  version = "1.2.7";

  name = "${pname}-${version}";

  src = fetchurl {
    url = "http://www.libsdl.org/projects/SDL_net/release/${name}.tar.gz";
    sha256 = "2ce7c84e62ff8117b9f205758bcce68ea603e08bc9d6936ded343735b8b77c53";
  };

  buildInputs = [SDL];

  postInstall = "ln -s $out/include/SDL/SDL_net.h $out/include/";

  meta = {
    description = "SDL networking library";
  };
}