summary refs log tree commit diff
path: root/pkgs/development/libraries/libhttpseverywhere
diff options
context:
space:
mode:
authorSamuel Gräfenstein <git@samuelgrf.com>2021-03-16 18:30:03 +0100
committerSamuel Gräfenstein <git@samuelgrf.com>2021-03-17 00:00:16 +0100
commit0b9377822cd2c5d8b52e483e9db4e60e7db64171 (patch)
treede18b759d4785a8fb35f627c6d6a605719b84401 /pkgs/development/libraries/libhttpseverywhere
parentb72ee5775c36d7999f35b0f4ca8e684d0c581e0d (diff)
downloadnixpkgs-0b9377822cd2c5d8b52e483e9db4e60e7db64171.tar
nixpkgs-0b9377822cd2c5d8b52e483e9db4e60e7db64171.tar.gz
nixpkgs-0b9377822cd2c5d8b52e483e9db4e60e7db64171.tar.bz2
nixpkgs-0b9377822cd2c5d8b52e483e9db4e60e7db64171.tar.lz
nixpkgs-0b9377822cd2c5d8b52e483e9db4e60e7db64171.tar.xz
nixpkgs-0b9377822cd2c5d8b52e483e9db4e60e7db64171.tar.zst
nixpkgs-0b9377822cd2c5d8b52e483e9db4e60e7db64171.zip
treewide: gnome3.libgee -> libgee
Fix building with `config.allowAliases = false;`.
Diffstat (limited to 'pkgs/development/libraries/libhttpseverywhere')
-rw-r--r--pkgs/development/libraries/libhttpseverywhere/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libhttpseverywhere/default.nix b/pkgs/development/libraries/libhttpseverywhere/default.nix
index f54929c5378..648eb89a514 100644
--- a/pkgs/development/libraries/libhttpseverywhere/default.nix
+++ b/pkgs/development/libraries/libhttpseverywhere/default.nix
@@ -1,5 +1,5 @@
 { lib, stdenv, fetchurl, pkg-config, meson, ninja, makeFontsConf, vala, fetchpatch
-, gnome3, glib, json-glib, libarchive, libsoup, gobject-introspection }:
+, gnome3, libgee, glib, json-glib, libarchive, libsoup, gobject-introspection }:
 
 let
   pname = "libhttpseverywhere";
@@ -13,7 +13,7 @@ in stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ vala gobject-introspection meson ninja pkg-config ];
-  buildInputs = [ glib gnome3.libgee json-glib libsoup libarchive ];
+  buildInputs = [ glib libgee json-glib libsoup libarchive ];
 
   # Fixes build with vala >=0.42
   patches = [