about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/science/biology/octopus/default.nix
blob: c594108c6f47a27e43aa05e1fe0d2d0f85f797ff (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
47
{lib, stdenv, fetchurl, fetchFromGitHub, cmake, boost179, gmp, htslib, zlib, xz, pkg-config}:

stdenv.mkDerivation rec {
  pname = "octopus";
  version = "0.7.4";

  src = fetchFromGitHub {
    owner = "luntergroup";
    repo = "octopus";
    rev = "v${version}";
    sha256 = "sha256-FAogksVxUlzMlC0BqRu22Vchj6VX+8yNlHRLyb3g1sE=";
  };

  nativeBuildInputs = [ cmake pkg-config ];
  buildInputs = [ boost179 gmp htslib zlib xz ];

  patches = [ (fetchurl {
    url = "https://github.com/luntergroup/octopus/commit/17a597d192bcd5192689bf38c5836a98b824867a.patch";
    sha256 = "sha256-VaUr63v7mzhh4VBghH7a7qrqOYwl6vucmmKzTi9yAjY=";
  }) ];

  postPatch = ''
    # Disable -Werror to avoid build failure on fresh toolchains like
    # gcc-13.
    substituteInPlace lib/date/CMakeLists.txt --replace-fail ' -Werror ' ' '
    substituteInPlace lib/ranger/CMakeLists.txt --replace-fail ' -Werror ' ' '
    substituteInPlace lib/tandem/CMakeLists.txt --replace-fail ' -Werror ' ' '
    substituteInPlace src/CMakeLists.txt --replace-fail ' -Werror ' ' '

    # Fix gcc-13 build due to missing <cstdint> header.
    sed -e '1i #include <cstdint>' -i src/core/tools/vargen/utils/assembler.hpp
  '';

  postInstall = ''
    mkdir $out/bin
    mv $out/octopus $out/bin
  '';

  meta = with lib; {
    description = "Bayesian haplotype-based mutation calling";
    mainProgram = "octopus";
    license = licenses.mit;
    homepage = "https://github.com/luntergroup/octopus";
    maintainers = with maintainers; [ jbedo ];
    platforms = platforms.x86_64;
  };
}