summary refs log tree commit diff
path: root/pkgs/applications/graphics/fbida/default.nix
blob: 7f29b43e0e14f4a964910d2f1fb72212f9b12b63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ stdenv, fetchurl, libjpeg, libexif, giflib, libtiff, libpng
, pkgconfig, freetype, fontconfig
}:

stdenv.mkDerivation rec {
  name = "fbida-2.07";
  
  src = fetchurl {
    url = "http://dl.bytesex.org/releases/fbida/${name}.tar.gz";
    sha256 = "0i6v3fvjc305pfw48sglb5f22lwxldmfch6mjhqbcp7lqkkxw435";
  };

  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 ];
  
  makeFlags = [ "prefix=$(out)" "verbose=yes" ];

  crossAttrs = {
    makeFlags = makeFlags ++ [ "CC=${stdenv.cross.config}-gcc" "STRIP="];
  };

  meta = {
    description = "Image viewing and manipulation programs";
  };
}