summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2021-01-19 22:37:41 +0100
committerThomas Gerbet <thomas@gerbet.me>2021-01-20 18:18:16 +0100
commit6974aa77120839c308483e62f3e226bc213d27a4 (patch)
tree1fe9973ec90a464c0e1137619d53213fee63246f /pkgs/applications/graphics
parenta15f1cd7d100a42e964f0b43ee685466b8e88079 (diff)
fig2dev: 3.2.7b -> 3.2.8
Fixes the fig2ps2tex and pic2tpic scripts. Fixes CVE-2019-19746.
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/fig2dev/default.nix22
1 files changed, 14 insertions, 8 deletions
diff --git a/pkgs/applications/graphics/fig2dev/default.nix b/pkgs/applications/graphics/fig2dev/default.nix
index c22bbbb48278..667f5afe5793 100644
--- a/pkgs/applications/graphics/fig2dev/default.nix
+++ b/pkgs/applications/graphics/fig2dev/default.nix
@@ -1,26 +1,32 @@
-{ lib, stdenv, fetchurl, ghostscript, libpng } :
+{ lib, stdenv, fetchurl, ghostscript, libpng, makeWrapper
+, coreutils, bc, gnugrep, gawk, gnused } :
-let
- version = "3.2.7b";
-
-in stdenv.mkDerivation {
+stdenv.mkDerivation rec {
pname = "fig2dev";
- inherit version;
+ version = "3.2.8";
src = fetchurl {
url = "mirror://sourceforge/mcj/fig2dev-${version}.tar.xz";
- sha256 = "1ck8gnqgg13xkxq4hrdy706i4xdgrlckx6bi6wxm1g514121pp27";
+ sha256 = "0zg29yqknfafyzmmln4k7kydfb2dapk3r8ffvlqhj3cm8fp5h4lk";
};
+ nativeBuildInputs = [ makeWrapper ];
buildInputs = [ libpng ];
GSEXE="${ghostscript}/bin/gs";
+ postInstall = ''
+ wrapProgram $out/bin/fig2ps2tex \
+ --set PATH ${lib.makeBinPath [ coreutils bc gnugrep gawk ]}
+ wrapProgram $out/bin/pic2tpic \
+ --set PATH ${lib.makeBinPath [ gnused ]}
+ '';
+
meta = with lib; {
description = "Tool to convert Xfig files to other formats";
homepage = "http://mcj.sourceforge.net/";
license = licenses.xfig;
platforms = platforms.linux;
+ maintainers = with maintainers; [ lesuisse ];
};
}
-