nixpkgs/pkgs/applications/science/biology/strelka/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.0 KiB
Nix
Raw Normal View History

{lib, stdenv, fetchFromGitHub, cmake, zlib, python2}:
2018-07-31 06:11:16 +03:00
stdenv.mkDerivation rec {
pname = "strelka";
2019-06-17 09:09:25 +03:00
version = "2.9.10";
2018-07-31 06:11:16 +03:00
src = fetchFromGitHub {
owner = "Illumina";
repo = "strelka";
rev = "v${version}";
2019-06-17 09:09:25 +03:00
sha256 = "1nykbmim1124xh22nrhrsn8xgjb3s2y7akrdapn9sl1gdych4ppf";
2018-07-31 06:11:16 +03:00
};
2019-06-17 09:09:25 +03:00
nativeBuildInputs = [ cmake ];
buildInputs = [ zlib python2 ];
2018-07-31 06:11:16 +03:00
env.NIX_CFLAGS_COMPILE = toString [
2019-12-30 05:18:19 +03:00
"-Wno-error=maybe-uninitialized"
"-Wno-error=pessimizing-move"
];
2019-12-17 03:20:32 +03:00
2018-07-31 06:11:16 +03:00
preConfigure = ''
sed -i 's|/usr/bin/env python|${python2}/bin/python|' src/python/lib/makeRunScript.py
patchShebangs .
'';
postFixup = ''
pushd $out/lib/python/pyflow
sed -i 's|/bin/bash|${stdenv.shell}|' pyflowTaskWrapper.py
rm pyflowTaskWrapper.pyc
echo "import pyflowTaskWrapper" | python2
popd
'';
meta = with lib; {
2018-07-31 06:11:16 +03:00
description = "Germline and small variant caller";
license = licenses.gpl3;
homepage = "https://github.com/Illumina/strelka";
2018-07-31 06:11:16 +03:00
maintainers = with maintainers; [ jbedo ];
platforms = [ "x86_64-linux" ];
};
}