From 4de0d7def5805433261f5d171480c90824d9f9e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sun, 26 Jul 2015 09:36:13 +0200 Subject: [PATCH] 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. --- pkgs/development/libraries/libdmtx/default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libdmtx/default.nix b/pkgs/development/libraries/libdmtx/default.nix index 8d7049dc29a..26cf2c023eb 100644 --- a/pkgs/development/libraries/libdmtx/default.nix +++ b/pkgs/development/libraries/libdmtx/default.nix @@ -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;