16 stdenv.mkDerivation rec {
21 url = "https://github.com/nextflow-io/nextflow/releases/download/v${version}/nextflow-${version}-all";
22 hash = "sha256-zeYsKxWRnzr0W6CD+yjoAXwCN/AbN5P4HhH1oftnrjY=";
41 install -Dm755 $src $out/bin/nextflow
47 wrapProgram $out/bin/nextflow \
48 --prefix PATH : ${lib.makeBinPath nativeBuildInputs} \
49 --set JAVA_HOME ${openjdk17.home}
53 description = "A DSL for data-driven computational pipelines";
55 Nextflow is a bioinformatics workflow manager that enables the development of portable and reproducible workflows.
57 It supports deploying workflows on a variety of execution platforms including local, HPC schedulers, AWS Batch, Google Cloud Life Sciences, and Kubernetes.
59 Additionally, it provides support for manage your workflow dependencies through built-in support for Conda, Docker, Singularity, and Modules.
61 homepage = "https://www.nextflow.io/";
62 changelog = "https://github.com/nextflow-io/nextflow/releases";
63 license = licenses.asl20;
64 maintainers = [ maintainers.Etjean ];
65 mainProgram = "nextflow";
66 platforms = platforms.unix;
70 if stdenv.isLinux then
74 targetPkgs = pkgs: [ nextflow ];
75 runScript = "nextflow";