about summary refs log tree commit diff
path: root/pkgs/applications/graphics/PythonMagick
diff options
context:
space:
mode:
authorArmijn Hemel <armijn@gpl-violations.org>2007-08-09 01:11:51 +0000
committerArmijn Hemel <armijn@gpl-violations.org>2007-08-09 01:11:51 +0000
commitfcd736f20b1590eda0790a07cec7e670ffc77142 (patch)
tree57ccfddfcf580c6847c69c96803bd9bbd114bfde /pkgs/applications/graphics/PythonMagick
parentf87c4ec7f41c3819f501da285a6c2e68fa176c81 (diff)
downloadnixlib-fcd736f20b1590eda0790a07cec7e670ffc77142.tar
nixlib-fcd736f20b1590eda0790a07cec7e670ffc77142.tar.gz
nixlib-fcd736f20b1590eda0790a07cec7e670ffc77142.tar.bz2
nixlib-fcd736f20b1590eda0790a07cec7e670ffc77142.tar.lz
nixlib-fcd736f20b1590eda0790a07cec7e670ffc77142.tar.xz
nixlib-fcd736f20b1590eda0790a07cec7e670ffc77142.tar.zst
nixlib-fcd736f20b1590eda0790a07cec7e670ffc77142.zip
add PythonMagick 0.7
svn path=/nixpkgs/trunk/; revision=9078
Diffstat (limited to 'pkgs/applications/graphics/PythonMagick')
-rw-r--r--pkgs/applications/graphics/PythonMagick/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/PythonMagick/default.nix b/pkgs/applications/graphics/PythonMagick/default.nix
new file mode 100644
index 000000000000..9096de6baa19
--- /dev/null
+++ b/pkgs/applications/graphics/PythonMagick/default.nix
@@ -0,0 +1,13 @@
+{stdenv, fetchurl, python, boost, pkgconfig, imagemagick}:
+
+stdenv.mkDerivation {
+  name = "PythonMagick-0.7";
+
+  src = fetchurl {
+    url = http://www.imagemagick.org/download/python/PythonMagick-0.7.tar.gz;
+    sha256 = "1553kyzdcysii2qhbpbgs0icmfpm6s2lp3zchgs73cxfnfym8lz1";
+  };
+
+  buildInputs = [python boost pkgconfig imagemagick];
+
+}