40 lines
854 B
Nix
40 lines
854 B
Nix
{ lib, stdenv, fetchFromGitHub, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "star";
|
|
version = "2.7.8a";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "STAR";
|
|
owner = "alexdobin";
|
|
rev = version;
|
|
sha256 = "sha256-2qqdCan67bcoUGgr5ro2LGGHDAyS/egTrT8pWX1chX0=";
|
|
};
|
|
|
|
sourceRoot = "source/source";
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile --replace "/bin/rm" "rm"
|
|
'';
|
|
|
|
buildInputs = [ zlib ];
|
|
|
|
buildFlags = [ "STAR" "STARlong" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -D STAR STARlong -t $out/bin
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Spliced Transcripts Alignment to a Reference";
|
|
homepage = "https://github.com/alexdobin/STAR";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.arcadio ];
|
|
};
|
|
}
|