2021-01-15 22:18:51 +00:00
|
|
|
{lib, stdenv, fetchFromGitHub, cmake, zlib, ncurses}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "somatic-sniper";
|
|
|
|
version = "1.0.5.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "genome";
|
|
|
|
repo = "somatic-sniper";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0lk7p9sp6mp50f6w1nppqhr40fcwy1asw06ivw8w8jvvnwaqf987";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./somatic-sniper.patch ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ zlib ncurses ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = false;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Identify single nucleotide positions that are different between tumor and normal";
|
|
|
|
license = licenses.mit;
|
|
|
|
homepage = "https://github.com/genome/somatic-sniper";
|
|
|
|
maintainers = with maintainers; [ jbedo ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|