about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libschrift/default.nix
blob: 3781d93461256e50c09adbc8ee1c4ca7ff49d146 (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
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "libschrift";
  version = "0.9.1";

  src = fetchFromGitHub {
    owner = "tomolt";
    repo = pname;
    rev = "c6d20460d6e602e8829d3a227fd7be4c4c3cda86";
    hash = "sha256-BuTmWaWFZ0DXujlbhbmK3Woit8fR9F4DWmKszHX6gOI=";
  };

  postPatch = ''
    substituteInPlace config.mk \
      --replace "PREFIX = /usr/local" "PREFIX = $out"
  '';

  makeFlags = [ "libschrift.a" ];

  meta = with lib; {
    homepage = "https://github.com/tomolt/libschrift";
    description = "A lightweight TrueType font rendering library";
    license = licenses.isc;
    platforms = platforms.all;
    maintainers = [ maintainers.sternenseemann ];
  };
}