summary refs log tree commit diff
path: root/pkgs/development/guile-modules/guile-sdl2/default.nix
blob: 5a166f3703ee67edfc22f439740d2e9042d2202f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{ stdenv,
  SDL2,
  SDL2_image,
  SDL2_ttf,
  SDL2_mixer,
  autoconf,
  automake,
  fetchgit,
  guile,
  libtool,
  pkgconfig,
  buildEnv
  }:
stdenv.mkDerivation rec {
  name = "guile-sdl2-${version}";
  version = "0.1.0";
  buildInputs = [ autoconf
                  automake
                  SDL2
                  SDL2_image
                  SDL2_ttf
                  SDL2_mixer
                  libtool
                  guile
                  pkgconfig ];
  src = fetchgit {
    url = "git://dthompson.us/guile-sdl2.git";
    rev = "048f80ddb5c6b03b87bba199a99a6f22d911bfff";
    sha256 = "1wbx157xd8lsv4vs8igqy3qw8yym5r5s7z94an18kwbf89npmf5d";
  };
  preConfigurePhases = [ "bootstrapPhase" ];
  bootstrapPhase = ''
    ./bootstrap
  '';
  configureFlags = [ "--with-libsdl2-prefix=${SDL2}"
                     "--with-libsdl2-image-prefix=${SDL2_image}"
                     "--with-libsdl2-ttf-prefix=${SDL2_ttf}"
                     "--with-libsdl2-mixer-prefix=${SDL2_mixer}"];
  makeFlags = ["GUILE_AUTO_COMPILE=0"];
  meta = {
    description = "Bindings to SDL2 for GNU Guile";
    homepage = "https://git.dthompson.us/guile-sdl2.git";
    license = stdenv.lib.licenses.gpl3;
    maintainers = [ stdenv.lib.maintainers.seppeljordan ];
    platforms = stdenv.lib.platforms.all;
  };
}