summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorIngo Blechschmidt <iblech@web.de>2018-05-19 18:59:04 +0200
committerxeji <36407913+xeji@users.noreply.github.com>2018-05-19 18:59:04 +0200
commitfac358731d6b9d46dd4ff4f3ddfcaeb5f2c7d1ad (patch)
tree9eb9e53161e064f9c33ccb773c4e98a1d093c577 /pkgs
parent3a6fd647e55affd8ba02699455fe56da99606802 (diff)
downloadnixpkgs-fac358731d6b9d46dd4ff4f3ddfcaeb5f2c7d1ad.tar
nixpkgs-fac358731d6b9d46dd4ff4f3ddfcaeb5f2c7d1ad.tar.gz
nixpkgs-fac358731d6b9d46dd4ff4f3ddfcaeb5f2c7d1ad.tar.bz2
nixpkgs-fac358731d6b9d46dd4ff4f3ddfcaeb5f2c7d1ad.tar.lz
nixpkgs-fac358731d6b9d46dd4ff4f3ddfcaeb5f2c7d1ad.tar.xz
nixpkgs-fac358731d6b9d46dd4ff4f3ddfcaeb5f2c7d1ad.tar.zst
nixpkgs-fac358731d6b9d46dd4ff4f3ddfcaeb5f2c7d1ad.zip
Unbreak gv (fixes #34841) (#40658)
It appears that without pkgconfig, the build process misdetects some features, resulting in gv to segfault immediately on startup.

The fix was adopted from https://github.com/Homebrew/legacy-homebrew/issues/18555#issuecomment-15074618.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/gv/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/misc/gv/default.nix b/pkgs/applications/misc/gv/default.nix
index b13e7ae5232..036cb104b48 100644
--- a/pkgs/applications/misc/gv/default.nix
+++ b/pkgs/applications/misc/gv/default.nix
@@ -19,8 +19,8 @@ stdenv.mkDerivation {
     Xaw3d
     ghostscriptX
     perl
-  ] ++ stdenv.lib.optionals stdenv.isDarwin [
     pkgconfig
+  ] ++ stdenv.lib.optionals stdenv.isDarwin [
     libiconv
   ];