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
33
pkgs/applications/science/biology/minia/default.nix
Normal file
33
pkgs/applications/science/biology/minia/default.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{ lib, stdenv, fetchFromGitHub, cmake, hdf5, boost }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "minia";
|
||||
version = "3.2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "GATB";
|
||||
repo = "minia";
|
||||
rev = "v${version}";
|
||||
sha256 = "0bmfrywixaaql898l0ixsfkhxjf2hb08ssnqzlzacfizxdp46siq";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
patches = [ ./no-bundle.patch ];
|
||||
|
||||
NIX_CFLAGS_COMPILE = [ "-Wformat" ];
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ hdf5 boost ];
|
||||
|
||||
prePatch = ''
|
||||
rm -rf thirdparty/gatb-core/gatb-core/thirdparty/{hdf5,boost}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Short read genome assembler";
|
||||
homepage = "https://github.com/GATB/minia";
|
||||
license = licenses.agpl3;
|
||||
maintainers = with maintainers; [ jbedo ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue