Merge pull request #282374 from superherointj/mark-broken-SPAdes

SPAdes: fix build
This commit is contained in:
Weijia Wang 2024-01-21 05:49:14 +01:00 committed by GitHub
commit 1f02ae58fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,6 +17,11 @@ stdenv.mkDerivation rec {
sourceRoot = "${pname}-${version}/src";
env.CXXFLAGS = toString [
# GCC 13: error: 'uint32_t' does not name a type
"-include cstdint"
];
meta = with lib; {
description = "St. Petersburg genome assembler: assembly toolkit containing various assembly pipelines";
license = licenses.gpl2Only;