about summary refs log tree commit diff
path: root/pkgs/development/libraries/libdmtx
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-07-26 09:36:13 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-07-26 09:36:13 +0200
commit4de0d7def5805433261f5d171480c90824d9f9e2 (patch)
treea621de299f47f129a06fdb505de2e4114f7e2bc1 /pkgs/development/libraries/libdmtx
parent80533a50431e555369fa9574ce222b2a912bda5f (diff)
downloadnixlib-4de0d7def5805433261f5d171480c90824d9f9e2.tar
nixlib-4de0d7def5805433261f5d171480c90824d9f9e2.tar.gz
nixlib-4de0d7def5805433261f5d171480c90824d9f9e2.tar.bz2
nixlib-4de0d7def5805433261f5d171480c90824d9f9e2.tar.lz
nixlib-4de0d7def5805433261f5d171480c90824d9f9e2.tar.xz
nixlib-4de0d7def5805433261f5d171480c90824d9f9e2.tar.zst
nixlib-4de0d7def5805433261f5d171480c90824d9f9e2.zip
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.
Diffstat (limited to 'pkgs/development/libraries/libdmtx')
-rw-r--r--pkgs/development/libraries/libdmtx/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libdmtx/default.nix b/pkgs/development/libraries/libdmtx/default.nix
index 8d7049dc29ab..26cf2c023ebd 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;