pstoedit: explicit dependency on jpeg
Possibly jpeg used to be propagated from gd but is no longer after
f8bdd7969d
.
This commit is contained in:
parent
220836d066
commit
a371094f1f
@ -1,17 +1,17 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, ghostscript, gd, zlib, plotutils }:
|
{ stdenv, fetchurl, pkgconfig, ghostscript, gd, libjpeg, zlib, plotutils }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "pstoedit-3.62";
|
name = "pstoedit-3.62";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://sourceforge/pstoedit/pstoedit-3.62.tar.gz;
|
url = "mirror://sourceforge/pstoedit/${name}.tar.gz";
|
||||||
sha256 = "0j410dm9nqwa7n03yiyz0jwvln0jlqc3n9iv4nls33yl6x3c8x40";
|
sha256 = "0j410dm9nqwa7n03yiyz0jwvln0jlqc3n9iv4nls33yl6x3c8x40";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig ghostscript gd zlib plotutils ];
|
buildInputs = [ pkgconfig ghostscript gd libjpeg zlib plotutils ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "translates PostScript and PDF graphics into other vector formats";
|
description = "Translates PostScript and PDF graphics into other vector formats";
|
||||||
homepage = http://www.helga-glunz.homepage.t-online.de/pstoedit;
|
homepage = http://www.helga-glunz.homepage.t-online.de/pstoedit;
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = stdenv.lib.licenses.gpl2;
|
||||||
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
||||||
|
Loading…
Reference in New Issue
Block a user