2016-04-04 16:05:01 +00:00
|
|
|
{ stdenv, fetchurl, libjpeg, libexif, libungif, libtiff, libpng, libwebp, libdrm
|
2016-11-27 16:07:01 +00:00
|
|
|
, pkgconfig, freetype, fontconfig, which, imagemagick, curl, sane-backends, libXpm
|
|
|
|
, epoxy, poppler }:
|
2009-08-04 07:14:43 +00:00
|
|
|
|
2011-01-16 16:28:08 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-11-27 16:07:01 +00:00
|
|
|
name = "fbida-2.12";
|
2011-01-16 16:28:08 +00:00
|
|
|
|
2009-08-04 07:14:43 +00:00
|
|
|
src = fetchurl {
|
2011-01-16 16:28:08 +00:00
|
|
|
url = "http://dl.bytesex.org/releases/fbida/${name}.tar.gz";
|
2016-11-27 16:07:01 +00:00
|
|
|
sha256 = "0bw224vb7jh0lrqaf4jgxk48xglvxs674qcpj5y0axyfbh896cfk";
|
2009-08-04 07:14:43 +00:00
|
|
|
};
|
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig which ];
|
2016-11-27 16:07:01 +00:00
|
|
|
buildInputs = [ libexif libjpeg libpng libungif freetype fontconfig libtiff
|
|
|
|
libwebp imagemagick curl sane-backends libdrm libXpm epoxy poppler ];
|
2011-01-16 16:28:08 +00:00
|
|
|
|
|
|
|
makeFlags = [ "prefix=$(out)" "verbose=yes" ];
|
|
|
|
|
2012-03-04 08:53:46 +00:00
|
|
|
patchPhase =
|
|
|
|
''
|
|
|
|
sed -e 's@ cpp\>@ gcc -E -@' -i GNUmakefile
|
|
|
|
'';
|
|
|
|
|
|
|
|
configurePhase = "make config $makeFlags";
|
|
|
|
|
2012-01-07 15:03:56 +00:00
|
|
|
crossAttrs = {
|
|
|
|
makeFlags = makeFlags ++ [ "CC=${stdenv.cross.config}-gcc" "STRIP="];
|
|
|
|
};
|
|
|
|
|
2015-05-31 13:54:28 +00:00
|
|
|
meta = with stdenv.lib; {
|
2011-01-16 16:28:08 +00:00
|
|
|
description = "Image viewing and manipulation programs";
|
2015-05-31 13:54:28 +00:00
|
|
|
homepage = https://www.kraxel.org/blog/linux/fbida/;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-11-27 16:07:01 +00:00
|
|
|
platforms = platforms.linux;
|
2009-08-04 07:14:43 +00:00
|
|
|
};
|
|
|
|
}
|