From 93908113cbe1c10b685f9bc81d1ec3718342edd2 Mon Sep 17 00:00:00 2001 From: Nelson Elhage Date: Tue, 11 Jun 2024 10:54:37 -0700 Subject: [PATCH] xidel: Set platforms to platforms.all The Linux-only `platforms` setting dates to 10 years ago in 7f06428544897f9064db5520433393a8cb16a72f, where it was accompanied by the comment > `# more platforms will be supported when we switch to source build` That switch happened in 2021 in d14ea1499b7a3e373bf53dd4aa631a9352344564. I've confirmed that the current package builds just fine on my `aarch64-darwin` laptop. --- pkgs/tools/text/xidel/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/text/xidel/default.nix b/pkgs/tools/text/xidel/default.nix index d7fefa2d495d..6a55a5d9e8b1 100644 --- a/pkgs/tools/text/xidel/default.nix +++ b/pkgs/tools/text/xidel/default.nix @@ -90,7 +90,7 @@ in stdenv.mkDerivation rec { mainProgram = "xidel"; homepage = "https://www.videlibri.de/xidel.html"; license = licenses.gpl3Plus; - platforms = platforms.linux; + platforms = platforms.all; maintainers = [ maintainers.bjornfor ]; }; }