mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
fcft: init at 0.4.3
This commit is contained in:
parent
be489bc04f
commit
d70ea54840
23
pkgs/development/libraries/fcft/default.nix
Normal file
23
pkgs/development/libraries/fcft/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user