summary refs log tree commit diff
diff options
context:
space:
mode:
authorStanisław Pitucha <git@viraptor.info>2023-05-20 21:44:17 +1000
committerGitHub <noreply@github.com>2023-05-20 21:44:17 +1000
commit2ab106dda30f662cd79da5eaeebc8e4c68c75d14 (patch)
tree75544b2704f0620d69316b006812e1717ee488e2
parent486995ccc1c38df71c94bf96d82be59ea172dc6f (diff)
parent458800e9416b8ad7d45d28372810acf2358f2a33 (diff)
downloadnixpkgs-2ab106dda30f662cd79da5eaeebc8e4c68c75d14.tar
nixpkgs-2ab106dda30f662cd79da5eaeebc8e4c68c75d14.tar.gz
nixpkgs-2ab106dda30f662cd79da5eaeebc8e4c68c75d14.tar.bz2
nixpkgs-2ab106dda30f662cd79da5eaeebc8e4c68c75d14.tar.lz
nixpkgs-2ab106dda30f662cd79da5eaeebc8e4c68c75d14.tar.xz
nixpkgs-2ab106dda30f662cd79da5eaeebc8e4c68c75d14.tar.zst
nixpkgs-2ab106dda30f662cd79da5eaeebc8e4c68c75d14.zip
Merge pull request #232817 from nessdoor/nixpkgs/mip
python3Packages.mip: mark as broken on AArch64
-rw-r--r--pkgs/development/python-modules/mip/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/mip/default.nix b/pkgs/development/python-modules/mip/default.nix
index 00be8547c73..e7ba8740cbb 100644
--- a/pkgs/development/python-modules/mip/default.nix
+++ b/pkgs/development/python-modules/mip/default.nix
@@ -1,4 +1,4 @@
-{ lib
+{ lib, stdenv
 , buildPythonPackage
 , cffi
 , dos2unix
@@ -73,6 +73,7 @@ buildPythonPackage rec {
     downloadPage = "https://github.com/coin-or/python-mip/releases";
     changelog = "https://github.com/coin-or/python-mip/releases/tag/${version}";
     license = licenses.epl20;
+    broken = stdenv.isAarch64;
     maintainers = with maintainers; [ nessdoor ];
   };
 }