about summary refs log tree commit diff
path: root/pkgs/applications/audio/audio-recorder
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2019-04-19 10:14:39 +0000
committervolth <volth@volth.com>2019-04-19 10:16:44 +0000
commitcf3f3fd1b5ff4b28225f669a35c8128ff8e89f27 (patch)
tree148b1e16f07364d16897b45b34178182a5a9f5bf /pkgs/applications/audio/audio-recorder
parent5e7e5a20629acd79bf648c44ff90707c581856e2 (diff)
fix evaluation with `config.allowAliases = false`
Diffstat (limited to 'pkgs/applications/audio/audio-recorder')
-rw-r--r--pkgs/applications/audio/audio-recorder/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/audio-recorder/default.nix b/pkgs/applications/audio/audio-recorder/default.nix
index 2ac7e3af7ab21..883414d6d833c 100644
--- a/pkgs/applications/audio/audio-recorder/default.nix
+++ b/pkgs/applications/audio/audio-recorder/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl
-, pkgconfig, intltool, gnome3
+, pkgconfig, intltool, glib
 , glib, dbus, gtk3, libappindicator-gtk3, gst_all_1
 , librsvg, wrapGAppsHook
 , pulseaudioSupport ? true, libpulseaudio ? null }:
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
   };
 
   # https://bugs.launchpad.net/audio-recorder/+bug/1784622
-  NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
+  NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
 
   nativeBuildInputs = [ pkgconfig intltool wrapGAppsHook ];