2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, guile, libtool, pkg-config
|
2017-09-28 05:40:12 +01:00
|
|
|
, SDL2, SDL2_image, SDL2_ttf, SDL2_mixer
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "guile-sdl2";
|
2020-07-03 15:21:49 +01:00
|
|
|
version = "0.5.0";
|
2017-09-28 05:40:12 +01:00
|
|
|
in stdenv.mkDerivation {
|
|
|
|
inherit name;
|
|
|
|
|
2017-09-28 05:54:04 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://files.dthompson.us/${pname}/${name}.tar.gz";
|
2020-07-03 15:21:49 +01:00
|
|
|
sha256 = "118x0cg7fzbsyrfhy5f9ab7dqp9czgia0ycgzp6sn3nlsdrcnr4m";
|
2016-05-15 12:36:01 +01:00
|
|
|
};
|
2017-09-28 05:40:12 +01:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ libtool pkg-config ];
|
2017-09-28 05:40:12 +01:00
|
|
|
buildInputs = [
|
2018-11-21 12:12:14 +00:00
|
|
|
guile SDL2 SDL2_image SDL2_ttf SDL2_mixer
|
2017-09-28 05:40:12 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
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" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-05-15 12:36:01 +01:00
|
|
|
description = "Bindings to SDL2 for GNU Guile";
|
2017-09-28 05:41:12 +01:00
|
|
|
homepage = "https://dthompson.us/projects/guile-sdl2.html";
|
2017-09-28 05:42:55 +01:00
|
|
|
license = licenses.lgpl3Plus;
|
2017-09-28 05:40:32 +01:00
|
|
|
maintainers = with maintainers; [ seppeljordan vyp ];
|
2017-09-28 05:40:12 +01:00
|
|
|
platforms = platforms.all;
|
2016-05-15 12:36:01 +01:00
|
|
|
};
|
|
|
|
}
|