Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
918 B
Nix
51 lines
918 B
Nix
{
|
|
lib,
|
|
SDL2,
|
|
autoreconfHook,
|
|
fetchFromGitHub,
|
|
freetype,
|
|
pango,
|
|
pkg-config,
|
|
stdenv,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "sdl2-pango";
|
|
version = "2.1.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "markuskimius";
|
|
repo = "SDL2_Pango";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-8SL5ylxi87TuKreC8m2kxlLr8rcmwYYvwkp4vQZ9dkc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
SDL2
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
SDL2
|
|
freetype
|
|
pango
|
|
];
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/markuskimius/SDL2_Pango";
|
|
description = "Library for graphically rendering internationalized and tagged text in SDL2 using TrueType fonts";
|
|
license = lib.licenses.lgpl21Plus;
|
|
maintainers = with lib.maintainers; [ rardiol ];
|
|
teams = [ lib.teams.sdl ];
|
|
inherit (SDL2.meta) platforms;
|
|
};
|
|
})
|