about summary refs log tree commit diff
path: root/pkgs/applications/video/losslesscut-bin
diff options
context:
space:
mode:
authorYueh-Shun Li <shamrocklee@posteo.net>2023-06-15 20:07:56 +0800
committerYueh-Shun Li <shamrocklee@posteo.net>2023-06-15 20:07:56 +0800
commit3a4db89d2cb47a54cc55cbcc743c80a5a26585bf (patch)
tree6a33dff0af701c6abb9d6d698de23e4509c3399a /pkgs/applications/video/losslesscut-bin
parent6b1b72c0f887a478a5aac355674ff6df0fc44f44 (diff)
losslesscut-bin.x86_64-darwin: change platform to platforms.darwin
Diffstat (limited to 'pkgs/applications/video/losslesscut-bin')
-rw-r--r--pkgs/applications/video/losslesscut-bin/build-from-dmg.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/video/losslesscut-bin/build-from-dmg.nix b/pkgs/applications/video/losslesscut-bin/build-from-dmg.nix
index b9913867b198a..9b3a91b9d029a 100644
--- a/pkgs/applications/video/losslesscut-bin/build-from-dmg.nix
+++ b/pkgs/applications/video/losslesscut-bin/build-from-dmg.nix
@@ -31,7 +31,7 @@ stdenvNoCC.mkDerivation {
   '';
 
   meta = metaCommon // (with lib; {
-    platforms = singleton (if isAarch64 then "aarch64-darwin" else "x86_64-darwin");
+    platforms = if isAarch64 then [ "aarch64-darwin" ] else platforms.darwin;
     mainProgram = "losslesscut";
   });
 }