mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
56 lines
1.1 KiB
Nix
56 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
SDL,
|
|
fetchpatch,
|
|
fetchurl,
|
|
freetype,
|
|
stdenv,
|
|
# Boolean flags
|
|
enableSdltest ? (!stdenv.isDarwin),
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "SDL_ttf";
|
|
version = "2.0.11";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-ckzYlez02jGaPvFkiStyB4vZJjKl2BIREmHN4kjrzbc=";
|
|
};
|
|
|
|
patches = [
|
|
# Bug #830: TTF_RenderGlyph_Shaded is broken
|
|
(fetchpatch {
|
|
url = "https://bugzilla-attachments.libsdl.org/attachments/830/renderglyph_shaded.patch.txt";
|
|
hash = "sha256-TZzlZe7gCRA8wZDHQZsqESAOGbLpJzIoB0HD8L6z3zE=";
|
|
})
|
|
];
|
|
|
|
patchFlags = [ "-p0" ];
|
|
|
|
buildInputs = [
|
|
SDL
|
|
freetype
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
SDL
|
|
freetype
|
|
];
|
|
|
|
configureFlags = [
|
|
(lib.enableFeature enableSdltest "-sdltest")
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/libsdl-org/SDL_ttf";
|
|
description = "SDL TrueType library";
|
|
license = lib.licenses.zlib;
|
|
maintainers = lib.teams.sdl.members
|
|
++ (with lib.maintainers; [ ]);
|
|
inherit (SDL.meta) platforms;
|
|
};
|
|
})
|