nixpkgs/pkgs/development/guile-modules/guile-sdl2/default.nix

39 lines
984 B
Nix
Raw Normal View History

{ stdenv, fetchurl, guile, libtool, pkgconfig
2017-09-28 05:40:12 +01:00
, SDL2, SDL2_image, SDL2_ttf, SDL2_mixer
}:
let
name = "${pname}-${version}";
pname = "guile-sdl2";
version = "0.2.0";
2017-09-28 05:40:12 +01:00
in stdenv.mkDerivation {
inherit name;
src = fetchurl {
url = "https://files.dthompson.us/${pname}/${name}.tar.gz";
sha256 = "0yq9lsl17cdvj77padvpk3jcw2g6g0pck9jrchc7n2767rrc012b";
2016-05-15 12:36:01 +01:00
};
2017-09-28 05:40:12 +01:00
buildInputs = [
guile libtool pkgconfig
2017-09-28 05:40:12 +01:00
SDL2 SDL2_image SDL2_ttf SDL2_mixer
];
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 = with stdenv.lib; {
2016-05-15 12:36:01 +01:00
description = "Bindings to SDL2 for GNU Guile";
homepage = "https://dthompson.us/projects/guile-sdl2.html";
license = licenses.lgpl3Plus;
2017-09-28 05:40:32 +01:00
maintainers = with maintainers; [ seppeljordan vyp ];
2017-09-28 05:40:12 +01:00
platforms = platforms.all;
2016-05-15 12:36:01 +01:00
};
}