2021-12-19 01:06:50 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, zlib
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "subread";
|
2023-05-24 13:37:59 +00:00
|
|
|
version = "2.0.6";
|
2021-12-19 01:06:50 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/subread/subread-${version}/subread-${version}-source.tar.gz";
|
2023-05-24 13:37:59 +00:00
|
|
|
sha256 = "sha256-8P3aa5hjTSlGAolIwiAlPhCg8nx/pfJJE7ZbOsbLsEU=";
|
2021-12-19 01:06:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
zlib
|
|
|
|
];
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
cd src
|
|
|
|
cp Makefile.${if stdenv.isLinux then "Linux" else "MacOS"} Makefile
|
|
|
|
'';
|
|
|
|
|
|
|
|
makeFlags = [ "CC_EXEC=cc" ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir $out
|
|
|
|
cp -r ../bin $out
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
2022-06-16 17:23:12 +00:00
|
|
|
broken = stdenv.isDarwin;
|
2021-12-19 01:06:50 +00:00
|
|
|
description = "High-performance read alignment, quantification and mutation discovery";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ jbedo ];
|
|
|
|
platforms = [ "x86_64-darwin" "x86_64-linux" ];
|
2023-02-02 18:25:31 +00:00
|
|
|
homepage = "https://subread.sourceforge.net/";
|
2021-12-19 01:06:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|