mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
* And now an actual fix.
svn path=/nixpkgs/trunk/; revision=25589
This commit is contained in:
parent
dbb8c452bb
commit
56ea89a61e
1 changed files with 11 additions and 7 deletions
|
@ -10,13 +10,17 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "0i6v3fvjc305pfw48sglb5f22lwxldmfch6mjhqbcp7lqkkxw435";
|
||||
};
|
||||
|
||||
patches =
|
||||
[ # Fetch a segfault in exiftran (http://bugs.gentoo.org/284753).
|
||||
(fetchurl {
|
||||
url = http://bugs.gentoo.org/attachment.cgi?id=203930;
|
||||
sha256 = "0zwva6qbahjdzk7vaw7cn3mj0326kawqw58rspvrz9m4vw5kqdzj";
|
||||
})
|
||||
];
|
||||
preBuild =
|
||||
''
|
||||
# Fetch a segfault in exiftran (http://bugs.gentoo.org/284753).
|
||||
# `fbida' contains a copy of some internal libjpeg source files.
|
||||
# If these do not match with the actual libjpeg, exiftran may
|
||||
# fail.
|
||||
tar xvf ${libjpeg.src}
|
||||
for i in jpegint.h jpeglib.h jinclude.h transupp.c transupp.h; do
|
||||
cp jpeg-*/$i jpeg/
|
||||
done
|
||||
'';
|
||||
|
||||
buildInputs =
|
||||
[ pkgconfig libexif libjpeg giflib libpng giflib freetype fontconfig ];
|
||||
|
|
Loading…
Reference in a new issue