about summary refs log tree commit diff
path: root/pkgs/applications/audio/gradio
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2018-08-30 19:45:19 +0200
committerVladimír Čunát <vcunat@gmail.com>2018-08-30 19:47:41 +0200
commit80b25db15cdbb3971ae739a6eca998da6845c174 (patch)
tree1899364f735acdee4e9256fd5047d75aa98b9d0b /pkgs/applications/audio/gradio
parent8fc6472ace275f24a0530eb191d5d89bc8aee35e (diff)
downloadnixlib-80b25db15cdbb3971ae739a6eca998da6845c174.tar
nixlib-80b25db15cdbb3971ae739a6eca998da6845c174.tar.gz
nixlib-80b25db15cdbb3971ae739a6eca998da6845c174.tar.bz2
nixlib-80b25db15cdbb3971ae739a6eca998da6845c174.tar.lz
nixlib-80b25db15cdbb3971ae739a6eca998da6845c174.tar.xz
nixlib-80b25db15cdbb3971ae739a6eca998da6845c174.tar.zst
nixlib-80b25db15cdbb3971ae739a6eca998da6845c174.zip
treewide: use glib tools from build-time $PATH
Using explicit output feels more flaky in case we e.g. move the binary.
(No strong opinion on my side, feel free to revert if you think so.)
Diffstat (limited to 'pkgs/applications/audio/gradio')
-rw-r--r--pkgs/applications/audio/gradio/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/audio/gradio/default.nix b/pkgs/applications/audio/gradio/default.nix
index ed34c3118c68..0e636c532b46 100644
--- a/pkgs/applications/audio/gradio/default.nix
+++ b/pkgs/applications/audio/gradio/default.nix
@@ -56,7 +56,7 @@ in stdenv.mkDerivation rec {
 
   enableParallelBuilding = true;
   postInstall = ''
-    ${glib.dev}/bin/glib-compile-schemas $out/share/glib-2.0/schemas
+    glib-compile-schemas "$out"/share/glib-2.0/schemas
   '';
 
   patches = [ ./0001-Remove-post-install-script-that-hardcodes-paths.patch ];