mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
libraqm: init at 0.10.1
This commit is contained in:
parent
6774f3fc04
commit
bf7cfe8953
36
pkgs/development/libraries/libraqm/default.nix
Normal file
36
pkgs/development/libraries/libraqm/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user