nixpkgs/pkgs/development/libraries/imlib2/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

94 lines
2.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl
# Image file formats
, libjpeg, libtiff, giflib, libpng, libwebp, libjxl
, libspectre
# imlib2 can load images from ID3 tags.
2022-04-04 16:45:13 +00:00
, libid3tag, librsvg, libheif
, freetype , bzip2, pkg-config
, x11Support ? true
2022-09-26 21:48:36 +00:00
, webpSupport ? true
, svgSupport ? false
, heifSupport ? false
, jxlSupport ? false
, psSupport ? false
# for passthru.tests
, libcaca
, diffoscopeMinimal
, feh
, icewm
, openbox
, fluxbox
, enlightenment
, xorg
, testers
}:
let
inherit (lib) optional optionals;
in
stdenv.mkDerivation (finalAttrs: {
pname = "imlib2";
2023-02-18 20:52:06 +00:00
version = "1.10.0";
src = fetchurl {
url = "mirror://sourceforge/enlightenment/${finalAttrs.pname}-${finalAttrs.version}.tar.xz";
2023-02-18 20:52:06 +00:00
hash = "sha256-cnwak3yIXAgMNyF+R23Ii1o+YNc38b8ECzQ1ILeBy7o=";
};
buildInputs = [
libjpeg libtiff giflib libpng
bzip2 freetype libid3tag
] ++ optionals x11Support [ xorg.libXft xorg.libXext ]
++ optional heifSupport libheif
++ optional svgSupport librsvg
++ optional webpSupport libwebp
++ optional jxlSupport libjxl
++ optional psSupport libspectre;
nativeBuildInputs = [ pkg-config ];
2016-05-04 01:32:57 +00:00
enableParallelBuilding = true;
2015-04-07 22:39:05 +00:00
# Do not build amd64 assembly code on Darwin, because it fails to compile
# with unknow directive errors
2016-11-22 20:08:19 +00:00
configureFlags = optional stdenv.isDarwin "--enable-amd64=no"
++ optional (!svgSupport) "--without-svg"
++ optional (!heifSupport) "--without-heif"
2016-11-22 20:08:19 +00:00
++ optional (!x11Support) "--without-x";
2015-04-07 22:39:05 +00:00
2017-09-26 21:14:38 +00:00
outputs = [ "bin" "out" "dev" ];
2016-11-22 21:11:25 +00:00
passthru.tests = {
inherit
libcaca
diffoscopeMinimal
feh
icewm
openbox
fluxbox
enlightenment;
};
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
meta = with lib; {
2015-04-07 22:39:05 +00:00
description = "Image manipulation library";
longDescription = ''
This is the Imlib 2 library - a library that does image file loading and
saving as well as rendering, manipulation, arbitrary polygon support, etc.
It does ALL of these operations FAST. Imlib2 also tries to be highly
intelligent about doing them, so writing naive programs can be done
easily, without sacrificing speed.
'';
homepage = "https://docs.enlightenment.org/api/imlib2/html";
2022-01-22 17:51:55 +00:00
changelog = "https://git.enlightenment.org/legacy/imlib2.git/plain/ChangeLog?h=v${version}";
license = licenses.imlib2;
pkgConfigModules = [ "imlib2" ];
2016-11-22 20:08:19 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ spwhitt ];
};
})