Files
nixpkgs/pkgs/development/perl-modules/Bio-BigFile/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

64 lines
1.7 KiB
Nix

{
BioPerl,
IOString,
buildPerlModule,
fetchFromGitHub,
fetchurl,
kent,
lib,
libmysqlclient,
libpng,
openssl,
}:
buildPerlModule rec {
pname = "Bio-BigFile";
version = "1.07";
src = fetchurl {
url = "mirror://cpan/authors/id/L/LD/LDS/Bio-BigFile-${version}.tar.gz";
sha256 = "277b66ce8acbdd52399e2c5a0cf4e3bd5c74c12b94877cd383d0c4c97740d16d";
};
# Only kent 335 works with Bio-BigFile, see
# - official documentation: https://www.ensembl.org/info/docs/tools/vep/script/vep_download.html#bigfile
# - one of the developer's answer: https://github.com/Ensembl/ensembl-vep/issues/1412
# BioBigfile needs the environment variable KENT_SRC to find kent
KENT_SRC = kent.overrideAttrs (old: rec {
pname = "kent";
version = "335";
src = fetchFromGitHub {
owner = "ucscGenomeBrowser";
repo = "kent";
rev = "v${version}_base";
sha256 = "1455dwzpaq4hyhcqj3fpwgq5a39kp46qarfbr6ms6l2lz583r083";
};
patches = [
# Fix for linking error with zlib. Adding zlib as a dependency is not enough
./kent-utils.patch
# Vendoring upstream patch (not merged in uscsGenomeBrowser/kent)
./kent-316e4fd40f53c96850128fd65097a42623d1e736.patch
];
});
buildInputs = [
BioPerl
IOString
libpng
libmysqlclient
openssl
];
# Ensure compatibility with GCC-11 (compilation fails if -Wno-format-security)
hardeningDisable = [ "format" ];
meta = {
homepage = "https://metacpan.org/dist/Bio-BigFile";
description = "Manipulate Jim Kent's BigWig and BigBed index files for genomic features";
license = lib.licenses.artistic2;
maintainers = with lib.maintainers; [ apraga ];
};
}