about summary refs log tree commit diff
path: root/pkgs/applications/audio/feishin
diff options
context:
space:
mode:
authornatsukium <tomoya.otabi@gmail.com>2023-07-29 22:08:14 +0900
committernatsukium <tomoya.otabi@gmail.com>2023-07-29 22:08:14 +0900
commite571bb68fdba3b890e40794f5558caec88a8df4d (patch)
tree7fa43b3f89e9cbffa77e771ada115af9d236f942 /pkgs/applications/audio/feishin
parent52858df957d9ef6f5d2954171f403cecc02371f6 (diff)
feishin: fix darwin build
I think it still needs to be modified to actually work with darwin.
Diffstat (limited to 'pkgs/applications/audio/feishin')
-rw-r--r--pkgs/applications/audio/feishin/darwin.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/audio/feishin/darwin.nix b/pkgs/applications/audio/feishin/darwin.nix
index cd486ea430c6b..b8b28f4768216 100644
--- a/pkgs/applications/audio/feishin/darwin.nix
+++ b/pkgs/applications/audio/feishin/darwin.nix
@@ -1,6 +1,8 @@
 { stdenv
 , lib
+, meta
 , fetchurl
+, unzip
 , mpv
 , electron_24
 , makeDesktopItem
@@ -14,7 +16,7 @@ stdenv.mkDerivation {
   inherit pname version;
 
   src = fetchurl {
-    url = "https://github.com/jeffvli/feishin/releases/download/v${version}/${appname}-${version}-mac-x64.zip"
+    url = "https://github.com/jeffvli/feishin/releases/download/v${version}/${appname}-${version}-mac-x64.zip";
     hash = "sha256-WzU/Yd3cNMIpmkKWC29mQlviYXiYV5k8+80iyzilPGc=";
   };