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

55 lines
1.5 KiB
Nix
Raw Normal View History

2016-11-22 20:08:19 +00:00
{ stdenv, fetchurl, libjpeg, libtiff, giflib, libpng, bzip2, pkgconfig
, freetype
, x11Support ? true, xlibsWrapper ? null }:
with stdenv.lib;
stdenv.mkDerivation rec {
2017-04-21 12:27:53 +00:00
name = "imlib2-1.4.10";
src = fetchurl {
url = "mirror://sourceforge/enlightenment/${name}.tar.bz2";
2017-04-21 12:27:53 +00:00
sha256 = "0wm2q2xlkbm71k7mw2jyzbxgzylrkcj5yh6nq58w5gybhp98qs9z";
};
2016-11-22 20:08:19 +00:00
buildInputs = [ libjpeg libtiff giflib libpng bzip2 freetype ]
++ optional x11Support xlibsWrapper;
nativeBuildInputs = [ pkgconfig ];
2016-05-04 01:32:57 +00:00
enableParallelBuilding = true;
preConfigure = ''
substituteInPlace imlib2-config.in \
--replace "@my_libs@" ""
'';
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 (!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
postInstall = ''
moveToOutput bin/imlib2-config "$dev"
'';
meta = {
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.
'';
2017-04-21 12:27:53 +00:00
homepage = http://docs.enlightenment.org/api/imlib2/html;
2016-11-22 20:08:19 +00:00
license = licenses.free;
platforms = platforms.unix;
maintainers = with maintainers; [ spwhitt ];
};
}