mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 09:34:36 +00:00
Merge pull request #324430 from wegank/spades-darwin
spades: fix build on darwin
This commit is contained in:
commit
9fb66c6989
@ -53,6 +53,8 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
readline
|
||||
];
|
||||
|
||||
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-faligned-allocation";
|
||||
|
||||
doCheck = true;
|
||||
|
||||
strictDeps = true;
|
||||
@ -63,12 +65,8 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
downloadPage = "https://github.com/ablab/spades";
|
||||
homepage = "http://ablab.github.io/spades";
|
||||
license = lib.licenses.gpl2Only;
|
||||
platforms = [
|
||||
"aarch64-linux"
|
||||
"x86_64-linux"
|
||||
"x86_64-darwin"
|
||||
];
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = with lib.maintainers; [ bzizou ];
|
||||
broken = stdenv.hostPlatform.isMusl && stdenv.isDarwin;
|
||||
broken = stdenv.hostPlatform.isMusl;
|
||||
};
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user