fcft: init at 0.4.3

This commit is contained in:
Fionera 2020-07-06 05:07:05 +02:00
parent be489bc04f
commit d70ea54840
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, lib, fetchgit, pkg-config, meson, ninja, freetype, fontconfig, pixman, tllist }:
stdenv.mkDerivation rec {
pname = "fcft";
version = "0.4.3";
src = fetchgit {
url = "https://codeberg.org/dnkl/fcft.git";
rev = "${version}";
sha256 = "1r2k5726k6ps8ml2s1vqmpiggqxzq9pbzs7m0dsxk29mh8vg0psj";
};
nativeBuildInputs = [ pkg-config meson ninja ];
buildInputs = [ freetype fontconfig pixman tllist ];
meta = with lib; {
homepage = "https://codeberg.org/dnkl/fcft";
description = "Simple library for font loading and glyph rasterization";
maintainers = with maintainers; [ fionera ];
license = licenses.mit;
platforms = with platforms; linux;
};
}

View file

@ -1872,6 +1872,8 @@ in
tllist = callPackage ../development/libraries/tllist { };
fcft = callPackage ../development/libraries/fcft { };
fwup = callPackage ../tools/misc/fwup { };
fx_cast_bridge = callPackage ../tools/misc/fx_cast { };