summary refs log blame commit diff
path: root/pkgs/development/libraries/libschrift/default.nix
blob: 443550e8a0a16853d189b7b3f7e73e0acc5e480d (plain) (tree)
1
2
3
4
5
6
7
8
9
                                             


                         
                     



                         
                        
                                                                    








                                                     
                    






                                                                  
{ lib, stdenv, fetchFromGitHub, fetchpatch }:

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

  src = fetchFromGitHub {
    owner = "tomolt";
    repo = pname;
    rev = "v" + version;
    sha256 = "01hgvkcb46kr9jzc4ah0js0jy9kr0ll18j2k0c5zil55l3a9rqw1";
  };

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