depot/pkgs/by-name/nc/ncbi-vdb/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

40 lines
724 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
bison,
cmake,
doxygen,
flex,
graphviz,
python3,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "ncbi-vdb";
version = "3.1.1";
src = fetchFromGitHub {
owner = "ncbi";
repo = "ncbi-vdb";
rev = "refs/tags/${finalAttrs.version}";
hash = "sha256-HBiheN8XfYYwmY5gw7j8qTczn6WZZNTzY2/fGtpgs/8=";
};
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;
};
})