nixpkgs/pkgs/development/libraries/libass/default.nix

50 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, yasm
2015-02-09 15:27:10 +00:00
, freetype ? null
, fribidi ? null
, encaSupport ? true, enca ? null # enca support
, fontconfigSupport ? true, fontconfig ? null # fontconfig support
, harfbuzzSupport ? true, harfbuzz ? null # harfbuzz support
, rasterizerSupport ? false # Internal rasterizer
, largeTilesSupport ? false # Use larger tiles in the rasterizer
}:
2015-02-09 15:27:10 +00:00
assert ((freetype != null) && (fribidi != null));
assert encaSupport -> (enca != null);
assert fontconfigSupport -> (fontconfig != null);
assert harfbuzzSupport -> (harfbuzz != null);
with stdenv.lib;
stdenv.mkDerivation rec {
name = "libass-${version}";
2015-02-09 15:27:10 +00:00
version = "0.12.1";
src = fetchurl {
2015-02-09 15:27:10 +00:00
url = "https://github.com/libass/libass/releases/download/${version}/${name}.tar.xz";
sha256 = "1mwj2nk9g6cq6f8m1hf0ijg1299rghhy9naahqq43sc2whblb1l7";
};
2015-02-09 15:27:10 +00:00
configureFlags = [
2015-05-22 20:33:08 +00:00
(mkEnable encaSupport "enca" null)
(mkEnable fontconfigSupport "fontconfig" null)
(mkEnable harfbuzzSupport "harfbuzz" null)
(mkEnable rasterizerSupport "rasterizer" null)
(mkEnable largeTilesSupport "large-tiles" null)
2015-02-09 15:27:10 +00:00
];
nativeBuildInputs = [ pkgconfig yasm ];
2015-02-09 15:27:10 +00:00
buildInputs = [ freetype fribidi ]
++ optional encaSupport enca
++ optional fontconfigSupport fontconfig
++ optional harfbuzzSupport harfbuzz;
meta = {
description = "Portable ASS/SSA subtitle renderer";
2015-02-09 15:27:10 +00:00
homepage = https://github.com/libass/libass;
license = licenses.isc;
2015-02-28 15:11:23 +00:00
platforms = platforms.unix;
2015-02-09 15:27:10 +00:00
maintainers = with maintainers; [ codyopel urkud ];
repositories.git = git://github.com/libass/libass.git;
};
}