sratoolkit: 3.3.0 -> 3.4.1

This commit is contained in:
t4ccer
2026-04-24 20:05:35 -02:30
parent cbbdcad5b2
commit 735b011a2d
3 changed files with 4 additions and 20 deletions
+2 -2
View File
@@ -12,13 +12,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "ncbi-vdb";
version = "3.3.0";
version = "3.4.1";
src = fetchFromGitHub {
owner = "ncbi";
repo = "ncbi-vdb";
tag = finalAttrs.version;
hash = "sha256-bYVwgNYnFg2OPaPWSbXIW+VXprxg/PxwHIRCnDfQRls=";
hash = "sha256-A6Pjy1dEkCHy1B6LrWwVs8Et41POvdK4Upsyp4JUnaU=";
};
nativeBuildInputs = [
@@ -1,14 +0,0 @@
diff --git a/libs/kxml/xml.c b/libs/kxml/xml.c
index ce445424..41e21612 100644
--- a/libs/kxml/xml.c
+++ b/libs/kxml/xml.c
@@ -46,6 +46,9 @@ struct s_KNodeNamelist;
#include <assert.h>
#include <string.h>
+#ifndef ATTRIBUTE_UNUSED
+#define ATTRIBUTE_UNUSED
+#endif
#define XML_DEBUG(msg) DBGMSG (DBG_XML, DBG_FLAG(DBG_XML_XML), msg)
+2 -4
View File
@@ -16,17 +16,15 @@ stdenv.mkDerivation (finalAttrs: {
pname = "sratoolkit";
# NOTE: When updating make sure to update ncbi-vdb as well for versions to match
version = "3.3.0";
version = "3.4.1";
src = fetchFromGitHub {
owner = "ncbi";
repo = "sra-tools";
tag = finalAttrs.version;
hash = "sha256-Lv4EWAKJ6F5uvsXgo2Bx3JyY9lYaL1El9Jbi2LidmHo=";
hash = "sha256-JMdJ8F4n9WgdP2oj8MN1+QlxCSmqFzsjAovx/+RyVjk=";
};
patches = [ ./attribute_unused.patch ];
cmakeFlags = [
"-DVDB_INCDIR=${ncbi-vdb}/include"
"-DVDB_LIBDIR=${ncbi-vdb}/lib"