mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-16 22:19:10 +00:00
flye: init at 2.9.3
flye: remove pname usage flye: use --replace-fail flye: remove superfluous darwin platform flye: use getExe flye: fix formatting flye: fix aarch64-linux build flye: use postPatch instead of preConfigure
This commit is contained in:
parent
bc71d9242d
commit
a238397911
15
pkgs/by-name/fl/flye/aarch64-fix.patch
Normal file
15
pkgs/by-name/fl/flye/aarch64-fix.patch
Normal file
@ -0,0 +1,15 @@
|
||||
diff --git a/Makefile b/Makefile
|
||||
index 75f62aed..91b9571b 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -16,6 +16,10 @@ ifeq ($(shell uname -m),arm64)
|
||||
export aarch64=1
|
||||
endif
|
||||
|
||||
+ifeq ($(shell uname -m),aarch64)
|
||||
+ export aarch64=1
|
||||
+endif
|
||||
+
|
||||
.PHONY: clean all profile debug minimap2 samtools
|
||||
|
||||
.DEFAULT_GOAL := all
|
51
pkgs/by-name/fl/flye/package.nix
Normal file
51
pkgs/by-name/fl/flye/package.nix
Normal file
@ -0,0 +1,51 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, python3Packages
|
||||
, zlib
|
||||
, curl
|
||||
, libdeflate
|
||||
, bash
|
||||
, coreutils
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "flye";
|
||||
version = "2.9.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "fenderglass";
|
||||
repo = "flye";
|
||||
rev = version;
|
||||
hash = "sha256-IALqtIPmvDYoH4w/tk2WB/P/pAcKXxgnsu9PFp+wIes=";
|
||||
};
|
||||
|
||||
nativeCheckInputs = [ python3Packages.pytestCheckHook ];
|
||||
|
||||
propagatedBuildInputs = [ coreutils ];
|
||||
|
||||
buildInputs = [
|
||||
zlib
|
||||
curl
|
||||
libdeflate
|
||||
];
|
||||
|
||||
patches = [ ./aarch64-fix.patch ];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace flye/polishing/alignment.py \
|
||||
--replace-fail "/bin/bash" "${lib.getExe bash}"
|
||||
|
||||
substituteInPlace flye/tests/test_toy.py \
|
||||
--replace-fail "find_executable(\"flye" "find_executable(\"$out/bin/flye" \
|
||||
--replace-fail "[\"flye" "[\"$out/bin/flye"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "De novo assembler for single molecule sequencing reads using repeat graphs";
|
||||
homepage = "https://github.com/fenderglass/Flye";
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.unix;
|
||||
mainProgram = "flye";
|
||||
maintainers = with maintainers; [ assistant ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user