2016-04-04 17:05:01 +01: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
|
2019-05-28 20:09:34 +01:00
|
|
|
, epoxy, poppler, mesa, lirc }:
|
2009-08-04 08:14:43 +01:00
|
|
|
|
2011-01-16 16:28:08 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-07-04 20:48:48 +01:00
|
|
|
name = "fbida-2.14";
|
2019-05-28 20:09:34 +01:00
|
|
|
|
2009-08-04 08:14:43 +01:00
|
|
|
src = fetchurl {
|
2011-01-16 16:28:08 +00:00
|
|
|
url = "http://dl.bytesex.org/releases/fbida/${name}.tar.gz";
|
2018-07-04 20:48:48 +01:00
|
|
|
sha256 = "0f242mix20rgsqz1llibhsz4r2pbvx6k32rmky0zjvnbaqaw1dwm";
|
2009-08-04 08:14:43 +01:00
|
|
|
};
|
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig which ];
|
2018-03-18 22:43:44 +00:00
|
|
|
buildInputs = [
|
|
|
|
libexif libjpeg libpng libungif freetype fontconfig libtiff libwebp
|
|
|
|
imagemagick curl sane-backends libdrm libXpm epoxy poppler lirc
|
2019-05-28 20:09:34 +01:00
|
|
|
mesa
|
2018-03-18 22:43:44 +00:00
|
|
|
];
|
2019-05-28 20:09:34 +01:00
|
|
|
|
2018-07-04 20:48:48 +01:00
|
|
|
makeFlags = [ "prefix=$(out)" "verbose=yes" "STRIP=" "JPEG_VER=62" ];
|
2011-01-16 16:28:08 +00:00
|
|
|
|
2018-07-04 20:48:48 +01:00
|
|
|
patchPhase = ''
|
2012-03-04 08:53:46 +00:00
|
|
|
sed -e 's@ cpp\>@ gcc -E -@' -i GNUmakefile
|
2018-07-04 20:48:48 +01:00
|
|
|
sed -e 's@$(HAVE_LINUX_FB_H)@yes@' -i GNUmakefile
|
|
|
|
'';
|
2012-03-04 08:53:46 +00:00
|
|
|
|
2015-05-31 14:54:28 +01:00
|
|
|
meta = with stdenv.lib; {
|
2011-01-16 16:28:08 +00:00
|
|
|
description = "Image viewing and manipulation programs";
|
2015-05-31 14:54:28 +01: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 08:14:43 +01:00
|
|
|
};
|
|
|
|
}
|