From f6e85785522eae598c3d7db97380703e5922a7e1 Mon Sep 17 00:00:00 2001 From: Markus Kowalewski Date: Thu, 8 Nov 2018 21:26:29 +0100 Subject: [PATCH] ltrace: remove aarch64 from platforms ltrace does not support ARM --- pkgs/development/tools/misc/ltrace/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/misc/ltrace/default.nix b/pkgs/development/tools/misc/ltrace/default.nix index 27bbaf7b9c40..77d4c5771f90 100644 --- a/pkgs/development/tools/misc/ltrace/default.nix +++ b/pkgs/development/tools/misc/ltrace/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Library call tracer"; homepage = https://www.ltrace.org/; - platforms = platforms.linux; + platforms = [ "i686-linux" "x86_64-linux" ]; license = licenses.gpl2; }; }