about summary refs log tree commit diff
path: root/pkgs/applications/science/math/eukleides/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/science/math/eukleides/default.nix')
-rw-r--r--pkgs/applications/science/math/eukleides/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/applications/science/math/eukleides/default.nix b/pkgs/applications/science/math/eukleides/default.nix
index e96438b5b3e27..12226abdfca48 100644
--- a/pkgs/applications/science/math/eukleides/default.nix
+++ b/pkgs/applications/science/math/eukleides/default.nix
@@ -9,8 +9,12 @@ lib.fix (eukleides: stdenv.mkDerivation rec {
     sha256 = "0s8cyh75hdj89v6kpm3z24i48yzpkr8qf0cwxbs9ijxj1i38ki0q";
   };
 
-  # use $CC instead of hardcoded gcc
-  patches = [ ./use-CC.patch ];
+  patches = [
+    # use $CC instead of hardcoded gcc
+    ./use-CC.patch
+    # allow PostScript transparency in epstopdf call
+    ./gs-allowpstransparency.patch
+  ];
 
   nativeBuildInputs = [ bison flex texinfo makeWrapper ];