9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
39 lines
1007 B
Nix
39 lines
1007 B
Nix
{ lib, stdenv, fetchurl, guile, libtool, pkg-config
|
|
, SDL2, SDL2_image, SDL2_ttf, SDL2_mixer
|
|
}:
|
|
|
|
let
|
|
name = "${pname}-${version}";
|
|
pname = "guile-sdl2";
|
|
version = "0.5.0";
|
|
in stdenv.mkDerivation {
|
|
inherit name;
|
|
|
|
src = fetchurl {
|
|
url = "https://files.dthompson.us/${pname}/${name}.tar.gz";
|
|
sha256 = "118x0cg7fzbsyrfhy5f9ab7dqp9czgia0ycgzp6sn3nlsdrcnr4m";
|
|
};
|
|
|
|
nativeBuildInputs = [ libtool pkg-config ];
|
|
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 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;
|
|
};
|
|
}
|