mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
40 lines
857 B
Nix
40 lines
857 B
Nix
{ stdenv, fetchFromGitHub, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "star";
|
|
version = "2.7.3a";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "STAR";
|
|
owner = "alexdobin";
|
|
rev = version;
|
|
sha256 = "1hgiqw5qhs0pc1xazzihcfd92na02xyq2kb469z04y1v51kpvvjq";
|
|
};
|
|
|
|
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 stdenv.lib; {
|
|
description = "Spliced Transcripts Alignment to a Reference";
|
|
homepage = "https://github.com/alexdobin/STAR";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.arcadio ];
|
|
};
|
|
}
|