mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
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 changed files with 5 additions and 5 deletions
|
@ -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";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/pstoedit/pstoedit-3.62.tar.gz;
|
||||
url = "mirror://sourceforge/pstoedit/${name}.tar.gz";
|
||||
sha256 = "0j410dm9nqwa7n03yiyz0jwvln0jlqc3n9iv4nls33yl6x3c8x40";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig ghostscript gd zlib plotutils ];
|
||||
buildInputs = [ pkgconfig ghostscript gd libjpeg zlib plotutils ];
|
||||
|
||||
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;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
||||
|
|
Loading…
Reference in a new issue