2021-02-12 21:15:48 +00:00
|
|
|
{ lib, stdenv, fetchurl, libjpeg, libexif, giflib, libtiff, libpng, libwebp, libdrm
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config, 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
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config which ];
|
2018-03-18 22:43:44 +00:00
|
|
|
buildInputs = [
|
2021-02-12 21:15:48 +00:00
|
|
|
libexif libjpeg libpng giflib freetype fontconfig libtiff libwebp
|
2018-03-18 22:43:44 +00:00
|
|
|
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
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-11-09 19:54:36 +00:00
|
|
|
description = "Image viewing and manipulation programs including fbi, fbgs, ida, exiftran and thumbnail.cgi";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.kraxel.org/blog/linux/fbida/";
|
2015-05-31 14:54:28 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|