tex.dblatex: remove legacy ? null and assert

This commit is contained in:
Sandro Jäckel 2022-02-16 00:50:58 +01:00
parent c374a5dd49
commit 4bfaf28537
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

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";