2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, yasm
|
2020-10-28 19:45:57 +00:00
|
|
|
, freetype, fribidi, harfbuzz
|
2015-02-09 15:27:10 +00:00
|
|
|
, fontconfigSupport ? true, fontconfig ? null # fontconfig support
|
|
|
|
, rasterizerSupport ? false # Internal rasterizer
|
|
|
|
, largeTilesSupport ? false # Use larger tiles in the rasterizer
|
2016-05-12 06:50:13 +01:00
|
|
|
, libiconv
|
2014-03-02 04:21:50 +00:00
|
|
|
}:
|
2011-02-09 21:10:42 +00:00
|
|
|
|
2015-06-01 00:47:59 +01:00
|
|
|
assert fontconfigSupport -> fontconfig != null;
|
2015-02-09 15:27:10 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
with lib;
|
2015-02-09 15:27:10 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libass";
|
2022-07-28 20:52:33 +01:00
|
|
|
version = "0.16.0";
|
2011-02-09 21:10:42 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://github.com/libass/libass/releases/download/${version}/${pname}-${version}.tar.xz";
|
2022-07-28 20:52:33 +01:00
|
|
|
sha256 = "sha256-Xb3p4iM5EZz47tWe6mxiOgdG71qQtonmigkBCQeOPAg=";
|
2011-02-09 21:10:42 +00:00
|
|
|
};
|
|
|
|
|
2015-02-09 15:27:10 +00:00
|
|
|
configureFlags = [
|
2022-06-29 20:32:50 +01:00
|
|
|
(enableFeature fontconfigSupport "fontconfig")
|
|
|
|
(enableFeature rasterizerSupport "rasterizer")
|
|
|
|
(enableFeature largeTilesSupport "large-tiles")
|
2015-02-09 15:27:10 +00:00
|
|
|
];
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config yasm ];
|
2014-03-02 04:21:50 +00:00
|
|
|
|
2020-10-28 19:45:57 +00:00
|
|
|
buildInputs = [ freetype fribidi harfbuzz ]
|
2015-02-09 15:27:10 +00:00
|
|
|
++ optional fontconfigSupport fontconfig
|
2016-05-12 06:50:13 +01:00
|
|
|
++ optional stdenv.isDarwin libiconv;
|
2011-02-09 21:10:42 +00:00
|
|
|
|
|
|
|
meta = {
|
2014-03-02 04:21:50 +00:00
|
|
|
description = "Portable ASS/SSA subtitle renderer";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/libass/libass";
|
2015-02-09 15:27:10 +00:00
|
|
|
license = licenses.isc;
|
2015-02-28 15:11:23 +00:00
|
|
|
platforms = platforms.unix;
|
2017-03-27 18:11:17 +01:00
|
|
|
maintainers = with maintainers; [ codyopel ];
|
2011-02-09 21:10:42 +00:00
|
|
|
};
|
|
|
|
}
|