e2ac38fdac
* guile-sdl2: 0.2.0 -> 0.3.1 (#50730) Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/guile-sdl2/versions * guilde-sdl2: split native build inputs libtool and pkgconfig are moved from buildInputs to nativeBuildInputs
39 lines
1007 B
Nix
39 lines
1007 B
Nix
{ stdenv, fetchurl, guile, libtool, pkgconfig
|
|
, SDL2, SDL2_image, SDL2_ttf, SDL2_mixer
|
|
}:
|
|
|
|
let
|
|
name = "${pname}-${version}";
|
|
pname = "guile-sdl2";
|
|
version = "0.3.1";
|
|
in stdenv.mkDerivation {
|
|
inherit name;
|
|
|
|
src = fetchurl {
|
|
url = "https://files.dthompson.us/${pname}/${name}.tar.gz";
|
|
sha256 = "0bw7x2lx90k4banc5k7yfkn3as93y25gr1xdr225ll7lmij21k64";
|
|
};
|
|
|
|
nativeBuildInputs = [ libtool pkgconfig ];
|
|
buildInputs = [
|
|
guile 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; {
|
|
description = "Bindings to SDL2 for GNU Guile";
|
|
homepage = "https://dthompson.us/projects/guile-sdl2.html";
|
|
license = licenses.lgpl3Plus;
|
|
maintainers = with maintainers; [ seppeljordan vyp ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|