nixpkgs/pkgs/applications/graphics/fbida/default.nix

35 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libjpeg, libexif, giflib, libtiff, libpng, libwebp, libdrm
, pkg-config, freetype, fontconfig, which, imagemagick, curl, sane-backends, libXpm
, epoxy, poppler, mesa, lirc }:
stdenv.mkDerivation rec {
2018-07-04 19:48:48 +00:00
name = "fbida-2.14";
src = fetchurl {
url = "http://dl.bytesex.org/releases/fbida/${name}.tar.gz";
2018-07-04 19:48:48 +00:00
sha256 = "0f242mix20rgsqz1llibhsz4r2pbvx6k32rmky0zjvnbaqaw1dwm";
};
nativeBuildInputs = [ pkg-config which ];
2018-03-18 22:43:44 +00:00
buildInputs = [
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
mesa
2018-03-18 22:43:44 +00:00
];
2018-07-04 19:48:48 +00:00
makeFlags = [ "prefix=$(out)" "verbose=yes" "STRIP=" "JPEG_VER=62" ];
2018-07-04 19:48:48 +00:00
patchPhase = ''
sed -e 's@ cpp\>@ gcc -E -@' -i GNUmakefile
2018-07-04 19:48:48 +00:00
sed -e 's@$(HAVE_LINUX_FB_H)@yes@' -i GNUmakefile
'';
meta = with lib; {
description = "Image viewing and manipulation programs including fbi, fbgs, ida, exiftran and thumbnail.cgi";
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;
};
}