Files
nixpkgs/pkgs/by-name/sd/SDL2_Pango/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

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;
};
})