Files
nixpkgs/pkgs/applications/graphics/PythonMagick/default.nix
T

29 lines
900 B
Nix
Raw Normal View History

# This expression provides Python bindings to ImageMagick. Python libraries are supposed to be called via `python-packages.nix`.
2018-09-10 11:59:51 +02:00
{ stdenv, fetchurl, python, pkgconfig, imagemagick, autoreconfHook }:
2007-08-09 01:11:51 +00:00
stdenv.mkDerivation rec {
name = "pythonmagick-${version}";
2017-03-18 16:27:12 -05:00
version = "0.9.16";
2007-08-09 01:11:51 +00:00
src = fetchurl {
2016-10-13 22:50:30 +02:00
url = "mirror://imagemagick/python/releases/PythonMagick-${version}.tar.xz";
2017-09-14 15:39:28 +03:00
sha256 = "137278mfb5079lns2mmw73x8dhpzgwha53dyl00mmhj2z25varpn";
2007-08-09 01:11:51 +00:00
};
2018-09-10 11:59:51 +02:00
postPatch = ''
rm configure
'';
2007-08-09 01:11:51 +00:00
2018-09-10 11:59:51 +02:00
configureFlags = [ "--with-boost=${python.pkgs.boost}" ];
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ python python.pkgs.boost imagemagick ];
meta = with stdenv.lib; {
2008-01-30 19:49:42 +00:00
homepage = http://www.imagemagick.org/script/api.php;
2018-09-10 11:59:51 +02:00
license = licenses.imagemagick;
description = "PythonMagick provides object oriented bindings for the ImageMagick Library.";
2008-01-30 19:49:42 +00:00
};
2007-08-09 01:11:51 +00:00
}