about summary refs log tree commit diff
path: root/pkgs/tools/audio/linuxwave
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-08-09 20:43:09 -0400
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-08-10 02:37:53 +0000
commit17d404ee80589efa8473cf1b50d031487329419a (patch)
tree17cfdfa6e5dab038ecb38d7fea9b46b9b56f213c /pkgs/tools/audio/linuxwave
parenta52cccf791cb424704a483a19d302ad032b5575b (diff)
zig.hook: rename from zigHook
This makes using specific versions of zig easier (without overrides)
Diffstat (limited to 'pkgs/tools/audio/linuxwave')
-rw-r--r--pkgs/tools/audio/linuxwave/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/audio/linuxwave/default.nix b/pkgs/tools/audio/linuxwave/default.nix
index 213a409098866..98860675dafcc 100644
--- a/pkgs/tools/audio/linuxwave/default.nix
+++ b/pkgs/tools/audio/linuxwave/default.nix
@@ -2,7 +2,7 @@
 , stdenv
 , fetchFromGitHub
 , installShellFiles
-, zigHook
+, zig_0_10
 }:
 
 stdenv.mkDerivation (finalAttrs: {
@@ -19,7 +19,7 @@ stdenv.mkDerivation (finalAttrs: {
 
   nativeBuildInputs = [
     installShellFiles
-    zigHook
+    zig_0_10.hook
   ];
 
   postInstall = ''
@@ -32,6 +32,6 @@ stdenv.mkDerivation (finalAttrs: {
     changelog = "https://github.com/orhun/linuxwave/blob/${finalAttrs.src.rev}/CHANGELOG.md";
     license = lib.licenses.mit;
     maintainers = with lib.maintainers; [ figsoda ];
-    inherit (zigHook.meta) platforms;
+    inherit (zig_0_10.meta) platforms;
   };
 })