summary refs log tree commit diff
path: root/pkgs/applications/misc/xastir
diff options
context:
space:
mode:
authorAaron Bieber <aaron@bolddaemon.com>2023-07-17 10:19:42 -0600
committerEmery Hemingway <ehmry@posteo.net>2023-07-17 19:21:24 +0100
commit4a716c50feec750263bee793ceb571be536dff19 (patch)
treef311d10f759c397642ec5355724ee5d95bf17366 /pkgs/applications/misc/xastir
parent184dfbc8a1c627a09fee4529c9c9b0e8ae64b81e (diff)
xastir: switch from imagemagick6 to graphicsmagick
This removes the need for the CVE addled imagemagick6. This approach
is similar to what is done on the BSDs:

https://github.com/openbsd/ports/blob/master/comms/xastir/Makefile
Diffstat (limited to 'pkgs/applications/misc/xastir')
-rw-r--r--pkgs/applications/misc/xastir/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/xastir/default.nix b/pkgs/applications/misc/xastir/default.nix
index 899468fbb5579..abb5d0b960962 100644
--- a/pkgs/applications/misc/xastir/default.nix
+++ b/pkgs/applications/misc/xastir/default.nix
@@ -1,7 +1,7 @@
 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
 , curl, db, libgeotiff
 , xorg, motif, pcre
-, perl, proj, rastermagick, shapelib
+, perl, proj, graphicsmagick, shapelib
 , libax25
 }:
 
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
   buildInputs = [
     curl db libgeotiff
     xorg.libXpm xorg.libXt motif pcre
-    perl proj rastermagick shapelib
+    perl proj graphicsmagick shapelib
     libax25
   ];