mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
3ff9e941eb
Enca support was dropped in 0.13.0: 6fc9855dac/Changelog (L184)
This also fixes cross-compilation, since enca didn't cross-compile.
46 lines
1.3 KiB
Nix
46 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl, pkg-config, yasm
|
|
, freetype, fribidi, harfbuzz
|
|
, fontconfigSupport ? true, fontconfig ? null # fontconfig support
|
|
, rasterizerSupport ? false # Internal rasterizer
|
|
, largeTilesSupport ? false # Use larger tiles in the rasterizer
|
|
, libiconv
|
|
}:
|
|
|
|
assert fontconfigSupport -> fontconfig != null;
|
|
|
|
let
|
|
mkFlag = optSet: flag: if optSet then "--enable-${flag}" else "--disable-${flag}";
|
|
in
|
|
|
|
with lib;
|
|
stdenv.mkDerivation rec {
|
|
pname = "libass";
|
|
version = "0.15.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/libass/libass/releases/download/${version}/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-HN05ydAHsG5zfnc4AE1/OM+bHpKEPzcweyTn/2OrjlM=";
|
|
};
|
|
|
|
configureFlags = [
|
|
(mkFlag fontconfigSupport "fontconfig")
|
|
(mkFlag rasterizerSupport "rasterizer")
|
|
(mkFlag largeTilesSupport "large-tiles")
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config yasm ];
|
|
|
|
buildInputs = [ freetype fribidi harfbuzz ]
|
|
++ optional fontconfigSupport fontconfig
|
|
++ optional stdenv.isDarwin libiconv;
|
|
|
|
meta = {
|
|
description = "Portable ASS/SSA subtitle renderer";
|
|
homepage = "https://github.com/libass/libass";
|
|
license = licenses.isc;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ codyopel ];
|
|
repositories.git = "git://github.com/libass/libass.git";
|
|
};
|
|
}
|