nixpkgs-suyu/pkgs/development/guile-modules/guile-sdl2/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

46 lines
1.3 KiB
Nix

{ stdenv,
SDL2,
SDL2_image,
SDL2_ttf,
SDL2_mixer,
autoconf,
automake,
fetchgit,
guile,
libtool,
pkgconfig
}:
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 = "1v7bc2bsddb46qdzq7cyzlw5i2y175kh66mbzbjky85sjfypb084";
};
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;
};
}