Merge pull request #29887 from vyp/upd/guile-sdl2

guile-sdl2: 0.1.0 -> 0.2.0
This commit is contained in:
Orivej Desh 2017-09-28 10:06:09 +00:00 committed by GitHub
commit 637c105159

View File

@ -1,46 +1,38 @@
{ stdenv, { stdenv, fetchurl, guile, libtool, pkgconfig
SDL2, , SDL2, SDL2_image, SDL2_ttf, SDL2_mixer
SDL2_image, }:
SDL2_ttf,
SDL2_mixer, let
autoconf, name = "${pname}-${version}";
automake, pname = "guile-sdl2";
fetchgit, version = "0.2.0";
guile, in stdenv.mkDerivation {
libtool, inherit name;
pkgconfig
}: src = fetchurl {
stdenv.mkDerivation rec { url = "https://files.dthompson.us/${pname}/${name}.tar.gz";
name = "guile-sdl2-${version}"; sha256 = "0yq9lsl17cdvj77padvpk3jcw2g6g0pck9jrchc7n2767rrc012b";
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 = "1v7bc2bsddb46qdzq7cyzlw5i2y175kh66mbzbjky85sjfypb084";
}; };
preConfigurePhases = [ "bootstrapPhase" ];
bootstrapPhase = '' buildInputs = [
./bootstrap guile libtool pkgconfig
''; SDL2 SDL2_image SDL2_ttf SDL2_mixer
configureFlags = [ "--with-libsdl2-prefix=${SDL2}" ];
"--with-libsdl2-image-prefix=${SDL2_image}"
"--with-libsdl2-ttf-prefix=${SDL2_ttf}" configureFlags = [
"--with-libsdl2-mixer-prefix=${SDL2_mixer}"]; "--with-libsdl2-prefix=${SDL2}"
makeFlags = ["GUILE_AUTO_COMPILE=0"]; "--with-libsdl2-image-prefix=${SDL2_image}"
meta = { "--with-libsdl2-ttf-prefix=${SDL2_ttf}"
"--with-libsdl2-mixer-prefix=${SDL2_mixer}"
];
makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
meta = with stdenv.lib; {
description = "Bindings to SDL2 for GNU Guile"; description = "Bindings to SDL2 for GNU Guile";
homepage = https://git.dthompson.us/guile-sdl2.git; homepage = "https://dthompson.us/projects/guile-sdl2.html";
license = stdenv.lib.licenses.gpl3; license = licenses.lgpl3Plus;
maintainers = [ stdenv.lib.maintainers.seppeljordan ]; maintainers = with maintainers; [ seppeljordan vyp ];
platforms = stdenv.lib.platforms.all; platforms = platforms.all;
}; };
} }