summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorGabriel Ebner <gebner@gebner.org>2020-08-23 11:53:32 +0200
committerGitHub <noreply@github.com>2020-08-23 11:53:32 +0200
commitf84aae6f67c921aa942d6b506db6509215c05591 (patch)
treea8175f46f1b73fa48e3f4f99d092c47db50e1c49 /pkgs/applications
parent737f4ec73a2dc68972e7e976eded4fab13bc0dba (diff)
parent294ddd8e9f7f6a035c18c5db0ff77cc8b3f2ce01 (diff)
downloadnixpkgs-f84aae6f67c921aa942d6b506db6509215c05591.tar
nixpkgs-f84aae6f67c921aa942d6b506db6509215c05591.tar.gz
nixpkgs-f84aae6f67c921aa942d6b506db6509215c05591.tar.bz2
nixpkgs-f84aae6f67c921aa942d6b506db6509215c05591.tar.lz
nixpkgs-f84aae6f67c921aa942d6b506db6509215c05591.tar.xz
nixpkgs-f84aae6f67c921aa942d6b506db6509215c05591.tar.zst
nixpkgs-f84aae6f67c921aa942d6b506db6509215c05591.zip
Merge pull request #96074 from gebner/qalc-gtk-doc-hack
qalculate-gtk: explain pkg-config issue
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/science/math/qalculate-gtk/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/applications/science/math/qalculate-gtk/default.nix b/pkgs/applications/science/math/qalculate-gtk/default.nix
index d1ab05d4cde..df622e7303d 100644
--- a/pkgs/applications/science/math/qalculate-gtk/default.nix
+++ b/pkgs/applications/science/math/qalculate-gtk/default.nix
@@ -12,7 +12,11 @@ stdenv.mkDerivation rec {
   };
 
   patchPhase = ''
+    # The gnome-search-provider2.c file generated by gdbus-codegen depends
+    # on gio-unix-2.0, which is a Requires.private of gtk+-3.0,
+    # and private dependencies are dropped in our default patched pkg-config.
     # https://github.com/Qalculate/qalculate-gtk/pull/178
+    # https://github.com/NixOS/nixpkgs/issues/292
     substituteInPlace configure.ac --replace 'libxml-2.0' 'libxml-2.0 gio-unix-2.0'
 
     # https://github.com/Qalculate/qalculate-gtk/pull/179