summary refs log tree commit diff
path: root/pkgs/development/libraries/glib-networking
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-11-07 01:32:05 +0200
committerArtturin <Artturin@artturin.com>2022-11-07 22:28:14 +0200
commit2abc0277f01dd09dfcf250cd371256df249dba7a (patch)
tree4fd4273a7903369efe1f5a97ad5d4c8bcb1e7af4 /pkgs/development/libraries/glib-networking
parentc4b49b957bfd008a77be9188be0b43a34d5fd01e (diff)
downloadnixpkgs-2abc0277f01dd09dfcf250cd371256df249dba7a.tar
nixpkgs-2abc0277f01dd09dfcf250cd371256df249dba7a.tar.gz
nixpkgs-2abc0277f01dd09dfcf250cd371256df249dba7a.tar.bz2
nixpkgs-2abc0277f01dd09dfcf250cd371256df249dba7a.tar.lz
nixpkgs-2abc0277f01dd09dfcf250cd371256df249dba7a.tar.xz
nixpkgs-2abc0277f01dd09dfcf250cd371256df249dba7a.tar.zst
nixpkgs-2abc0277f01dd09dfcf250cd371256df249dba7a.zip
glib-networking: fix cross and enable strictDeps
Diffstat (limited to 'pkgs/development/libraries/glib-networking')
-rw-r--r--pkgs/development/libraries/glib-networking/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/libraries/glib-networking/default.nix b/pkgs/development/libraries/glib-networking/default.nix
index 60d812b16dc..a9a214c542c 100644
--- a/pkgs/development/libraries/glib-networking/default.nix
+++ b/pkgs/development/libraries/glib-networking/default.nix
@@ -14,6 +14,7 @@
 , libproxy
 , gnome
 , gsettings-desktop-schemas
+, bash
 }:
 
 stdenv.mkDerivation rec {
@@ -36,12 +37,15 @@ stdenv.mkDerivation rec {
     ./installed-tests-path.patch
   ];
 
+  strictDeps = true;
+
   nativeBuildInputs = [
     meson
     ninja
     pkg-config
     gettext
     makeWrapper
+    glib # for gio-querymodules
   ];
 
   buildInputs = [
@@ -50,6 +54,7 @@ stdenv.mkDerivation rec {
     p11-kit
     libproxy
     gsettings-desktop-schemas
+    bash # installed-tests shebangs
   ];
 
   doCheck = false; # tests need to access the certificates (among other things)