Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
709 B
Nix
Raw Permalink Normal View History

2024-07-10 13:31:58 -06:00
{
lib,
stdenv,
fetchFromGitHub,
bison,
cmake,
doxygen,
flex,
graphviz,
python3,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "ncbi-vdb";
2025-04-18 18:35:03 -06:00
version = "3.2.1";
2024-07-10 13:31:58 -06:00
src = fetchFromGitHub {
owner = "ncbi";
repo = "ncbi-vdb";
tag = finalAttrs.version;
2025-04-18 18:35:03 -06:00
hash = "sha256-ccKJF6Ank/hyADnDwN0qoQbb0BniXlz/Fgnc1IXq0P0=";
2024-07-10 13:31:58 -06:00
};
nativeBuildInputs = [
bison
cmake
doxygen
flex
graphviz
python3
];
meta = {
homepage = "https://github.com/ncbi/ncbi-vdb";
description = "Libraries for the INSDC Sequence Read Archives";
license = lib.licenses.ncbiPd;
maintainers = with lib.maintainers; [ t4ccer ];
platforms = lib.platforms.unix;
};
})