mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
51 lines
990 B
Nix
51 lines
990 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.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;
|
|
};
|
|
})
|