libraqm: init at 0.10.1

This commit is contained in:
mingchuan 2023-07-30 23:24:22 -07:00
parent 6774f3fc04
commit bf7cfe8953
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, meson
, ninja
, freetype
, harfbuzz
, fribidi
}:
stdenv.mkDerivation rec {
pname = "libraqm";
version = "0.10.1";
src = fetchFromGitHub {
owner = "HOST-Oman";
repo = "libraqm";
rev = "v${version}";
sha256 = "sha256-H9W+7Mob3o5ctxfp5UhIxatSdXqqvkpyEibJx9TO7a8=";
};
buildInputs = [ freetype harfbuzz fribidi ];
nativeBuildInputs = [ pkg-config meson ninja ];
doCheck = true;
meta = with lib; {
description = "A library for complex text layout";
homepage = "https://github.com/HOST-Oman/libraqm";
license = licenses.mit;
maintainers = with maintainers; [ sifmelcara ];
platforms = platforms.all;
};
}

View file

@ -27923,6 +27923,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) ApplicationServices;
};
libraqm = callPackage ../development/libraries/libraqm { };
libraw = callPackage ../development/libraries/libraw { };
libraw1394 = callPackage ../development/libraries/libraw1394 { };