9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
64 lines
1.7 KiB
Nix
64 lines
1.7 KiB
Nix
{ stdenv, fetchurl
|
|
# Image file formats
|
|
, libjpeg, libtiff, giflib, libpng, libwebp
|
|
# imlib2 can load images from ID3 tags.
|
|
, libid3tag
|
|
, freetype , bzip2, pkg-config
|
|
, x11Support ? true, xlibsWrapper ? null
|
|
}:
|
|
|
|
let
|
|
inherit (stdenv.lib) optional;
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "imlib2";
|
|
version = "1.7.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/enlightenment/${pname}-${version}.tar.bz2";
|
|
sha256 = "0zdk4afdrrr1539f2q15zja19j4wwfmpswzws2ffgflcnhywlxhr";
|
|
};
|
|
|
|
buildInputs = [
|
|
libjpeg libtiff giflib libpng libwebp
|
|
bzip2 freetype libid3tag
|
|
] ++ optional x11Support xlibsWrapper;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
preConfigure = ''
|
|
substituteInPlace imlib2-config.in \
|
|
--replace "@my_libs@" ""
|
|
'';
|
|
|
|
# Do not build amd64 assembly code on Darwin, because it fails to compile
|
|
# with unknow directive errors
|
|
configureFlags = optional stdenv.isDarwin "--enable-amd64=no"
|
|
++ optional (!x11Support) "--without-x";
|
|
|
|
outputs = [ "bin" "out" "dev" ];
|
|
|
|
postInstall = ''
|
|
moveToOutput bin/imlib2-config "$dev"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
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";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ spwhitt ];
|
|
};
|
|
}
|