libdmtx: remove imagemagick dependency, /cc #8990

I found no reason for the dependency at all, and it was even propagated.
Neither Debian nor Arch have any kind of it.
This commit is contained in:
Vladimír Čunát 2015-07-26 09:36:13 +02:00
parent 80533a5043
commit 4de0d7def5

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, imagemagick }:
{ stdenv, fetchurl, pkgconfig }:
stdenv.mkDerivation rec {
name = "libdmtx-0.7.4";
@ -10,8 +10,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs = [ imagemagick ];
meta = {
description = "An open source software for reading and writing Data Matrix barcodes";
homepage = http://libdmtx.org;