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

44 lines
1.1 KiB
Nix
Raw Normal View History

2017-09-28 04:40:12 +00:00
{ stdenv, fetchgit, autoconf, automake, guile, libtool, pkgconfig
, SDL2, SDL2_image, SDL2_ttf, SDL2_mixer
}:
let
name = "${pname}-${version}";
pname = "guile-sdl2";
2016-05-15 11:36:01 +00:00
version = "0.1.0";
2017-09-28 04:40:12 +00:00
in stdenv.mkDerivation {
inherit name;
2016-05-15 11:36:01 +00:00
src = fetchgit {
url = "git://dthompson.us/guile-sdl2.git";
rev = "048f80ddb5c6b03b87bba199a99a6f22d911bfff";
sha256 = "1v7bc2bsddb46qdzq7cyzlw5i2y175kh66mbzbjky85sjfypb084";
2016-05-15 11:36:01 +00:00
};
2017-09-28 04:40:12 +00:00
buildInputs = [
autoconf automake guile libtool pkgconfig
SDL2 SDL2_image SDL2_ttf SDL2_mixer
];
2016-05-15 11:36:01 +00:00
preConfigurePhases = [ "bootstrapPhase" ];
2017-09-28 04:40:12 +00:00
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 = with stdenv.lib; {
2016-05-15 11:36:01 +00:00
description = "Bindings to SDL2 for GNU Guile";
2017-09-28 04:40:12 +00:00
homepage = "https://git.dthompson.us/guile-sdl2.git";
license = licenses.gpl3;
maintainers = with maintainers; [ seppeljordan ];
platforms = platforms.all;
2016-05-15 11:36:01 +00:00
};
}