Merge pull request #246309 from sifmelcara/libraqm

libraqm: init at 0.10.1
This commit is contained in:
Pierre Bourdon 2023-08-07 01:12:12 +02:00 committed by GitHub
commit 7dcc39fdc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

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