about summary refs log tree commit diff
path: root/pkgs/by-name/sd/SDL2_Pango/package.nix
blob: 9fbee142d6b9c36df8860ff046e84dd94ab40824 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
  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;
  };
})