summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorEmmanuel Rosa <emmanuelrosa@users.noreply.github.com>2017-07-03 03:09:54 -0400
committerJörg Thalheim <Mic92@users.noreply.github.com>2017-07-03 08:09:54 +0100
commit7ec7aa0bb1ab2c5e66a34803461ac0f929eca729 (patch)
tree3eea4ae23eae387b8d6f0e507405161f3e26e4f3 /pkgs/misc
parent40c6f7e1084e41cc0ae6d31ef05e7ac64b74b69c (diff)
downloadnixlib-7ec7aa0bb1ab2c5e66a34803461ac0f929eca729.tar
nixlib-7ec7aa0bb1ab2c5e66a34803461ac0f929eca729.tar.gz
nixlib-7ec7aa0bb1ab2c5e66a34803461ac0f929eca729.tar.bz2
nixlib-7ec7aa0bb1ab2c5e66a34803461ac0f929eca729.tar.lz
nixlib-7ec7aa0bb1ab2c5e66a34803461ac0f929eca729.tar.xz
nixlib-7ec7aa0bb1ab2c5e66a34803461ac0f929eca729.tar.zst
nixlib-7ec7aa0bb1ab2c5e66a34803461ac0f929eca729.zip
Revert "splix: enable JBIG" (#27054)
This reverts commit 0878ca7ab4c9da80ba18357cfd29596dc0500973.

My change to enable JBIG for splix did not work correctly. I was unable to get to the bottom of it because the build never completed. Given that it's also timing out in Hydra (see https://hydra.nixos.org/eval/1372226) I think it's best to simply back it out.
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/cups/drivers/splix/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/misc/cups/drivers/splix/default.nix b/pkgs/misc/cups/drivers/splix/default.nix
index 8c253af736f9..2cdaca8d7832 100644
--- a/pkgs/misc/cups/drivers/splix/default.nix
+++ b/pkgs/misc/cups/drivers/splix/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
   };
 
   preBuild = ''
-    makeFlags="V=1 CUPSFILTER=$out/lib/cups/filter CUPSPPD=$out/share/cups/model"
+    makeFlags="V=1 DISABLE_JBIG=1 CUPSFILTER=$out/lib/cups/filter CUPSPPD=$out/share/cups/model"
   '';
 
   buildInputs = [cups zlib];