aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/audio
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
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')
-rw-r--r--pkgs/applications/audio/ft2-clone/default.nix4
-rw-r--r--pkgs/applications/audio/pt2-clone/default.nix4
2 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/applications/audio/ft2-clone/default.nix b/pkgs/applications/audio/ft2-clone/default.nix
index 24bc34089823..7045d6811d38 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;
};
}
diff --git a/pkgs/applications/audio/pt2-clone/default.nix b/pkgs/applications/audio/pt2-clone/default.nix
index 8a0cd99ff2ba..d39156f69d01 100644
--- a/pkgs/applications/audio/pt2-clone/default.nix
+++ b/pkgs/applications/audio/pt2-clone/default.nix
@@ -29,7 +29,9 @@ stdenv.mkDerivation rec {
homepage = "https://16-bits.org/pt2.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;
};
}