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

38 lines
1.1 KiB
Nix
Raw Normal View History

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 }:
stdenv.mkDerivation rec {
2016-11-27 16:07:01 +00:00
name = "fbida-2.12";
src = fetchurl {
url = "http://dl.bytesex.org/releases/fbida/${name}.tar.gz";
2016-11-27 16:07:01 +00:00
sha256 = "0bw224vb7jh0lrqaf4jgxk48xglvxs674qcpj5y0axyfbh896cfk";
};
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 ];
makeFlags = [ "prefix=$(out)" "verbose=yes" ];
patchPhase =
''
sed -e 's@ cpp\>@ gcc -E -@' -i GNUmakefile
'';
configurePhase = "make config $makeFlags";
crossAttrs = {
makeFlags = makeFlags ++ [ "CC=${stdenv.cross.config}-gcc" "STRIP="];
};
meta = with stdenv.lib; {
description = "Image viewing and manipulation programs";
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;
};
}