nixpkgs/pkgs/applications/graphics/fig2dev/default.nix
Thomas Gerbet 6974aa7712 fig2dev: 3.2.7b -> 3.2.8
Fixes the fig2ps2tex and pic2tpic scripts.
Fixes CVE-2019-19746.
2021-01-20 18:18:16 +01:00

33 lines
899 B
Nix

{ lib, stdenv, fetchurl, ghostscript, libpng, makeWrapper
, coreutils, bc, gnugrep, gawk, gnused } :
stdenv.mkDerivation rec {
pname = "fig2dev";
version = "3.2.8";
src = fetchurl {
url = "mirror://sourceforge/mcj/fig2dev-${version}.tar.xz";
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 ];
};
}