about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/science/biology/kalign/default.nix
blob: 3ca83978d9690804c9b2eafbd195d040b7bd556c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{ lib
, stdenv
, cmake
, fetchFromGitHub
, llvmPackages
, enableSse4_1 ? stdenv.hostPlatform.sse4_1Support
, enableAvx ? stdenv.hostPlatform.avxSupport
, enableAvx2 ? stdenv.hostPlatform.avx2Support
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "kalign";
  version = "3.4.0";

  src = fetchFromGitHub {
    owner = "TimoLassmann";
    repo = "kalign";
    rev = "refs/tags/v${finalAttrs.version}";
    hash = "sha256-QcFNaCTqj6CFiOzQ6ezfBL0mu8PDU11hyNdkcsLOPzA=";
  };

  nativeBuildInputs = [
    cmake
  ];

  buildInputs = lib.optionals stdenv.cc.isClang [
    llvmPackages.openmp
  ];

  cmakeFlags =
    # these flags are ON by default
    lib.optional (!enableSse4_1) "-DENABLE_SSE=OFF"
    ++ lib.optional (!enableAvx) "-DENABLE_AVX=OFF"
    ++ lib.optional (!enableAvx2) "-DENABLE_AVX2=OFF";

  doCheck = true;

  meta = {
    description = "A fast multiple sequence alignment program";
    homepage = "https://github.com/TimoLassmann/kalign";
    changelog = "https://github.com/TimoLassmann/kalign/releases/tag/${finalAttrs.src.rev}";
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ natsukium ];
    platforms = lib.platforms.unix;
  };
})