about summary refs log tree commit diff
path: root/pkgs/tools/text/xidel/default.nix
diff options
context:
space:
mode:
authorNelson Elhage <nelhage@nelhage.com>2024-06-11 10:54:37 -0700
committerBjørn Forsman <bjorn.forsman@gmail.com>2024-06-11 23:49:33 +0200
commit93908113cbe1c10b685f9bc81d1ec3718342edd2 (patch)
tree1f16af5e72d8d9dfb4abd8124256aefe8edbca99 /pkgs/tools/text/xidel/default.nix
parent7ce0c7abf814852a2e2831da198e1b44dac7c54f (diff)
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.
Diffstat (limited to 'pkgs/tools/text/xidel/default.nix')
-rw-r--r--pkgs/tools/text/xidel/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/text/xidel/default.nix b/pkgs/tools/text/xidel/default.nix
index d7fefa2d495db..6a55a5d9e8b13 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 ];
   };
 }