Merge pull request #160236 from SuperSandro2000/tex-dblatex

tex.dblatex: remove legacy `? null` and assert
This commit is contained in:
Ivv 2022-02-16 01:45:30 +01:00 committed by GitHub
commit 19574af0af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
{ lib, stdenv, fetchurl, python3, libxslt, texlive
, enableAllFeatures ? false, imagemagick ? null, fig2dev ? null, inkscape ? null, fontconfig ? null, ghostscript ? null
, enableAllFeatures ? false, imagemagick, fig2dev, inkscape, fontconfig, ghostscript
, tex ? texlive.combine { # satisfy all packages that ./configure mentions
inherit (texlive) scheme-basic epstopdf anysize appendix changebar
@ -13,13 +13,6 @@
# NOTE: enableAllFeatures just purifies the expression, it doesn't actually
# enable any extra features.
assert enableAllFeatures ->
imagemagick != null &&
fig2dev != null &&
inkscape != null &&
fontconfig != null &&
ghostscript != null;
stdenv.mkDerivation rec {
pname = "dblatex";
version = "0.3.12";