depot/pkgs/by-name/sd/SDL2_Pango/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

50 lines
1,003 B
Nix

{
lib,
SDL2,
autoreconfHook,
darwin,
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
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
darwin.libobjc
];
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 = lib.teams.sdl.members
++ (with lib.maintainers; [ rardiol ]);
inherit (SDL2.meta) platforms;
};
})