about summary refs log tree commit diff
path: root/pkgs/applications/audio/ft2-clone
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2020-11-26 17:52:32 +0100
committerGitHub <noreply@github.com>2020-11-26 17:52:32 +0100
commitb8bc039a13e103b4518d88e3606dade63206308d (patch)
tree8363de936937732ee83332eff764f1374d36601d /pkgs/applications/audio/ft2-clone
parent73ec4085c9730256a213183ecfc5094d956253ee (diff)
parent672ab0d63a45a04d89afc3369da2bc52fcb54473 (diff)
Merge pull request #99381 from fgaz/ft2-pt2-clone/endianness
pt2-clone,ft2-clone: only build on little-endian systems
Diffstat (limited to 'pkgs/applications/audio/ft2-clone')
-rw-r--r--pkgs/applications/audio/ft2-clone/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/audio/ft2-clone/default.nix b/pkgs/applications/audio/ft2-clone/default.nix
index 24bc340898235..7045d6811d38f 100644
--- a/pkgs/applications/audio/ft2-clone/default.nix
+++ b/pkgs/applications/audio/ft2-clone/default.nix
@@ -32,7 +32,9 @@ stdenv.mkDerivation rec {
     homepage = "https://16-bits.org/ft2.php";
     license = licenses.bsd3;
     maintainers = with maintainers; [ fgaz ];
-    platforms = platforms.all;
+    # From HOW-TO-COMPILE.txt:
+    # > This code is NOT big-endian compatible
+    platforms = platforms.littleEndian;
   };
 }