aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/libass
diff options
context:
space:
mode:
authorcodyopel <codyopel@gmail.com>2015-05-31 19:47:59 -0400
committercodyopel <codyopel@gmail.com>2015-05-31 19:47:59 -0400
commitec7f3fb516e7af55704f63c950c4c4aa256b0e0d (patch)
tree0ef2d9d8bf774ee717ec25225130c5639a98b6b7 /pkgs/development/libraries/libass
parentdb5696123616bca584e72a76e075e05ed6dbc61a (diff)
libass: 0.12.1 -> 0.12.2
Diffstat (limited to 'pkgs/development/libraries/libass')
-rw-r--r--pkgs/development/libraries/libass/default.nix14
1 files changed, 6 insertions, 8 deletions
diff --git a/pkgs/development/libraries/libass/default.nix b/pkgs/development/libraries/libass/default.nix
index 77742c3d6259..502f95dca9a4 100644
--- a/pkgs/development/libraries/libass/default.nix
+++ b/pkgs/development/libraries/libass/default.nix
@@ -1,6 +1,5 @@
{ stdenv, fetchurl, pkgconfig, yasm
-, freetype ? null
-, fribidi ? null
+, freetype, fribidi
, encaSupport ? true, enca ? null # enca support
, fontconfigSupport ? true, fontconfig ? null # fontconfig support
, harfbuzzSupport ? true, harfbuzz ? null # harfbuzz support
@@ -8,19 +7,18 @@
, largeTilesSupport ? false # Use larger tiles in the rasterizer
}:
-assert ((freetype != null) && (fribidi != null));
-assert encaSupport -> (enca != null);
-assert fontconfigSupport -> (fontconfig != null);
-assert harfbuzzSupport -> (harfbuzz != null);
+assert encaSupport -> enca != null;
+assert fontconfigSupport -> fontconfig != null;
+assert harfbuzzSupport -> harfbuzz != null;
with stdenv.lib;
stdenv.mkDerivation rec {
name = "libass-${version}";
- version = "0.12.1";
+ version = "0.12.2";
src = fetchurl {
url = "https://github.com/libass/libass/releases/download/${version}/${name}.tar.xz";
- sha256 = "1mwj2nk9g6cq6f8m1hf0ijg1299rghhy9naahqq43sc2whblb1l7";
+ sha256 = "1qzibgqmnnqk2r116lpk1br764g0v74f2zp12y5id0p1plaing37";
};
configureFlags = [