bedtools: 2.27.1 -> 2.28.0
This commit is contained in:
parent
f8274c8b18
commit
11ed86d873
@ -1,17 +1,17 @@
|
|||||||
{stdenv, fetchFromGitHub, zlib, python}:
|
{stdenv, fetchFromGitHub, zlib, python, bzip2, lzma}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "bedtools-${version}";
|
name = "bedtools-${version}";
|
||||||
version = "2.27.1";
|
version = "2.28.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "arq5x";
|
owner = "arq5x";
|
||||||
repo = "bedtools2";
|
repo = "bedtools2";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1pk68y052rm2m24yfmy82ms8p6kd6xcqxxgi7n0a1sbh89wllm6s";
|
sha256 = "1266bcn5hgbvysfi6nr4cqxlbxcx7vn7ng8kb0v3gz37qh2zxxw9";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ zlib python ];
|
buildInputs = [ zlib python bzip2 lzma ];
|
||||||
cc = if stdenv.cc.isClang then "clang++" else "g++";
|
cc = if stdenv.cc.isClang then "clang++" else "g++";
|
||||||
buildPhase = "make prefix=$out SHELL=${stdenv.shell} CXX=${cc} -j $NIX_BUILD_CORES";
|
buildPhase = "make prefix=$out SHELL=${stdenv.shell} CXX=${cc} -j $NIX_BUILD_CORES";
|
||||||
installPhase = "make prefix=$out SHELL=${stdenv.shell} CXX=${cc} install";
|
installPhase = "make prefix=$out SHELL=${stdenv.shell} CXX=${cc} install";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user