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
|
2017-03-21 12:39:52 +00:00
|
|
|
, epoxy, poppler, lirc }:
|
2009-08-04 07:14:43 +00:00
|
|
|
|
2011-01-16 16:28:08 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-03-21 12:35:57 +00:00
|
|
|
name = "fbida-2.13";
|
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";
|
2017-03-21 12:35:57 +00:00
|
|
|
sha256 = "01yv4qqqfbz9v281y2jlxhxdym3ricyb0zkqkgp5b40qrmfik1x8";
|
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
|
2017-03-21 12:39:52 +00:00
|
|
|
libwebp imagemagick curl sane-backends libdrm libXpm epoxy poppler lirc ];
|
2011-01-16 16:28:08 +00:00
|
|
|
|
2017-07-31 09:46:48 +00:00
|
|
|
makeFlags = [ "prefix=$(out)" "verbose=yes" "STRIP=" ];
|
2011-01-16 16:28:08 +00:00
|
|
|
|
2012-03-04 08:53:46 +00:00
|
|
|
patchPhase =
|
|
|
|
''
|
|
|
|
sed -e 's@ cpp\>@ gcc -E -@' -i GNUmakefile
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|