From 495afc1071391c1b0573791e39a49338476e3807 Mon Sep 17 00:00:00 2001 From: Chris Moultrie <821688+tebriel@users.noreply.github.com> Date: Tue, 12 Sep 2023 12:05:42 -0400 Subject: [PATCH] freetube: add darwin support Freetube is an electron app, distributed for Apple/Darwin Arch as well. I tested this on aarch64-darwin and the platform is supported and it works as expected. Co-authored-by: Weijia Wang <9713184+wegank@users.noreply.github.com> --- pkgs/applications/video/freetube/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/video/freetube/default.nix b/pkgs/applications/video/freetube/default.nix index 82bcb8c85668..33034d9ef97a 100644 --- a/pkgs/applications/video/freetube/default.nix +++ b/pkgs/applications/video/freetube/default.nix @@ -46,6 +46,6 @@ stdenv.mkDerivation rec { homepage = "https://freetubeapp.io/"; license = licenses.agpl3Only; maintainers = with maintainers; [ ryneeverett alyaeanyx ]; - platforms = [ "x86_64-linux" ]; + inherit (electron_22.meta) platforms; }; }