1 {lib, stdenv, fetchFromGitHub, cmake, zlib, ncurses}:
3 stdenv.mkDerivation rec {
4 pname = "somatic-sniper";
7 src = fetchFromGitHub {
9 repo = "somatic-sniper";
11 sha256 = "0lk7p9sp6mp50f6w1nppqhr40fcwy1asw06ivw8w8jvvnwaqf987";
14 patches = [ ./somatic-sniper.patch ];
16 nativeBuildInputs = [ cmake ];
17 buildInputs = [ zlib ncurses ];
19 enableParallelBuilding = false;
22 description = "Identify single nucleotide positions that are different between tumor and normal";
23 mainProgram = "bam-somaticsniper";
24 license = licenses.mit;
25 homepage = "https://github.com/genome/somatic-sniper";
26 maintainers = with maintainers; [ jbedo ];
27 platforms = platforms.linux;