about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoachim F <joachifm@users.noreply.github.com>2017-03-05 21:38:27 +0100
committerGitHub <noreply@github.com>2017-03-05 21:38:27 +0100
commit58bb4bafa51d334bf848c98bfcc2f29c33b8caca (patch)
tree87e906cd7a68273b0e9b1970e3bb57dc4776e233
parent5f1398ce13048714a5d94e1532dc0049a748b02a (diff)
parent7771db2eb6f0525c487c2fdff914d0c9bae3b99d (diff)
downloadnixlib-58bb4bafa51d334bf848c98bfcc2f29c33b8caca.tar
nixlib-58bb4bafa51d334bf848c98bfcc2f29c33b8caca.tar.gz
nixlib-58bb4bafa51d334bf848c98bfcc2f29c33b8caca.tar.bz2
nixlib-58bb4bafa51d334bf848c98bfcc2f29c33b8caca.tar.lz
nixlib-58bb4bafa51d334bf848c98bfcc2f29c33b8caca.tar.xz
nixlib-58bb4bafa51d334bf848c98bfcc2f29c33b8caca.tar.zst
nixlib-58bb4bafa51d334bf848c98bfcc2f29c33b8caca.zip
Merge pull request #23476 from jensbin/corebird_missing_glib-networking
corebird: missing dependencies (glib_networking)
-rw-r--r--pkgs/applications/networking/corebird/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/networking/corebird/default.nix b/pkgs/applications/networking/corebird/default.nix
index 3ceb9c4d8164..95a2e8877c31 100644
--- a/pkgs/applications/networking/corebird/default.nix
+++ b/pkgs/applications/networking/corebird/default.nix
@@ -1,5 +1,6 @@
 { stdenv, fetchFromGitHub, gtk3, json_glib, sqlite, libsoup, gettext, vala_0_32
-, automake, autoconf, libtool, pkgconfig, gnome3, gst_all_1, wrapGAppsHook }:
+, automake, autoconf, libtool, pkgconfig, gnome3, gst_all_1, wrapGAppsHook
+, glib_networking }:
 
 stdenv.mkDerivation rec {
   version = "1.3.3";
@@ -19,7 +20,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ automake autoconf libtool pkgconfig wrapGAppsHook ];
 
   buildInputs = [
-    gtk3 json_glib sqlite libsoup gettext vala_0_32 gnome3.rest
+    gtk3 json_glib sqlite libsoup gettext vala_0_32 gnome3.rest glib_networking
   ] ++ (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-libav ]);
 
   meta = {