guile-sdl2: code formatting nits
This commit is contained in:
parent
28299f669a
commit
c758e553de
@ -1,46 +1,43 @@
|
|||||||
{ stdenv,
|
{ stdenv, fetchgit, autoconf, automake, 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,
|
|
||||||
guile,
|
|
||||||
libtool,
|
|
||||||
pkgconfig
|
|
||||||
}:
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "guile-sdl2-${version}";
|
|
||||||
version = "0.1.0";
|
version = "0.1.0";
|
||||||
buildInputs = [ autoconf
|
in stdenv.mkDerivation {
|
||||||
automake
|
inherit name;
|
||||||
SDL2
|
|
||||||
SDL2_image
|
|
||||||
SDL2_ttf
|
|
||||||
SDL2_mixer
|
|
||||||
libtool
|
|
||||||
guile
|
|
||||||
pkgconfig ];
|
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "git://dthompson.us/guile-sdl2.git";
|
url = "git://dthompson.us/guile-sdl2.git";
|
||||||
rev = "048f80ddb5c6b03b87bba199a99a6f22d911bfff";
|
rev = "048f80ddb5c6b03b87bba199a99a6f22d911bfff";
|
||||||
sha256 = "1v7bc2bsddb46qdzq7cyzlw5i2y175kh66mbzbjky85sjfypb084";
|
sha256 = "1v7bc2bsddb46qdzq7cyzlw5i2y175kh66mbzbjky85sjfypb084";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
autoconf automake guile libtool pkgconfig
|
||||||
|
SDL2 SDL2_image SDL2_ttf SDL2_mixer
|
||||||
|
];
|
||||||
|
|
||||||
preConfigurePhases = [ "bootstrapPhase" ];
|
preConfigurePhases = [ "bootstrapPhase" ];
|
||||||
bootstrapPhase = ''
|
|
||||||
./bootstrap
|
bootstrapPhase = "./bootstrap";
|
||||||
'';
|
|
||||||
configureFlags = [ "--with-libsdl2-prefix=${SDL2}"
|
configureFlags = [
|
||||||
"--with-libsdl2-image-prefix=${SDL2_image}"
|
"--with-libsdl2-prefix=${SDL2}"
|
||||||
"--with-libsdl2-ttf-prefix=${SDL2_ttf}"
|
"--with-libsdl2-image-prefix=${SDL2_image}"
|
||||||
"--with-libsdl2-mixer-prefix=${SDL2_mixer}"];
|
"--with-libsdl2-ttf-prefix=${SDL2_ttf}"
|
||||||
makeFlags = ["GUILE_AUTO_COMPILE=0"];
|
"--with-libsdl2-mixer-prefix=${SDL2_mixer}"
|
||||||
meta = {
|
];
|
||||||
|
|
||||||
|
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://git.dthompson.us/guile-sdl2.git";
|
||||||
license = stdenv.lib.licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = [ stdenv.lib.maintainers.seppeljordan ];
|
maintainers = with maintainers; [ seppeljordan ];
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user