mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
andi: init at 0.14
Efficient Estimation of Evolutionary Distances https://github.com/evolbioinf/andi
This commit is contained in:
parent
215b697080
commit
b4fbaae278
52
pkgs/by-name/an/andi/package.nix
Normal file
52
pkgs/by-name/an/andi/package.nix
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
fetchFromGitHub,
|
||||||
|
autoreconfHook,
|
||||||
|
pkg-config,
|
||||||
|
glib,
|
||||||
|
gsl,
|
||||||
|
libdivsufsort,
|
||||||
|
llvmPackages,
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
|
pname = "andi";
|
||||||
|
version = "0.14";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "evolbioinf";
|
||||||
|
repo = "andi";
|
||||||
|
rev = "refs/tags/v${finalAttrs.version}";
|
||||||
|
hash = "sha256-tjQ9exFyqu/xnbUGpF6k0kE5C1D93kISjRErwHfjW9E=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
autoreconfHook
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gsl
|
||||||
|
libdivsufsort
|
||||||
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ llvmPackages.openmp ];
|
||||||
|
|
||||||
|
configureFlags = [ (lib.enableFeature finalAttrs.finalPackage.doCheck "unit-tests") ];
|
||||||
|
|
||||||
|
nativeCheckInputs = [ glib ];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
preCheck = ''
|
||||||
|
patchShebangs ./test
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Efficient Estimation of Evolutionary Distances";
|
||||||
|
homepage = "https://github.com/evolbioinf/andi";
|
||||||
|
license = lib.licenses.gpl3Plus;
|
||||||
|
maintainers = with lib.maintainers; [ natsukium ];
|
||||||
|
mainProgram = "andi";
|
||||||
|
platforms = lib.platforms.all;
|
||||||
|
};
|
||||||
|
})
|
Loading…
Reference in New Issue
Block a user