summary refs log tree commit diff
path: root/pkgs/applications/audio/ft2-clone
diff options
context:
space:
mode:
authorFrancesco Gazzetta <fgaz@fgaz.me>2020-10-02 13:53:45 +0200
committerFrancesco Gazzetta <fgaz@fgaz.me>2020-10-02 14:30:35 +0200
commit672ab0d63a45a04d89afc3369da2bc52fcb54473 (patch)
treee6c2c38bc8e175a4597e6132f56ebbdff12d59ad /pkgs/applications/audio/ft2-clone
parentb91277425762884b19a003c6dfc8ec122df914c0 (diff)
downloadnixpkgs-672ab0d63a45a04d89afc3369da2bc52fcb54473.tar
nixpkgs-672ab0d63a45a04d89afc3369da2bc52fcb54473.tar.gz
nixpkgs-672ab0d63a45a04d89afc3369da2bc52fcb54473.tar.bz2
nixpkgs-672ab0d63a45a04d89afc3369da2bc52fcb54473.tar.lz
nixpkgs-672ab0d63a45a04d89afc3369da2bc52fcb54473.tar.xz
nixpkgs-672ab0d63a45a04d89afc3369da2bc52fcb54473.tar.zst
nixpkgs-672ab0d63a45a04d89afc3369da2bc52fcb54473.zip
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 aa4f1226891..ac18547acae 100644
--- a/pkgs/applications/audio/ft2-clone/default.nix
+++ b/pkgs/applications/audio/ft2-clone/default.nix
@@ -24,7 +24,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;
   };
 }