uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
29
pkgs/applications/science/biology/somatic-sniper/default.nix
Normal file
29
pkgs/applications/science/biology/somatic-sniper/default.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{lib, stdenv, fetchFromGitHub, cmake, zlib, ncurses}:
|
||||
|
||||
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 ];
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ zlib ncurses ];
|
||||
|
||||
enableParallelBuilding = false;
|
||||
|
||||
meta = with lib; {
|
||||
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;
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue