Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

nextflow: 22.10.6 -> 23.10.1 #286701

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions pkgs/development/interpreters/nextflow/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
, stdenv
, fetchurl
, makeWrapper
, openjdk17
, openjdk
, wget
, which
, gnused
Expand All @@ -15,16 +15,16 @@ let
nextflow =
stdenv.mkDerivation rec {
pname = "nextflow";
version = "22.10.6";
version = "23.10.1";

src = fetchurl {
url = "https://github.com/nextflow-io/nextflow/releases/download/v${version}/nextflow-${version}-all";
hash = "sha256-zeYsKxWRnzr0W6CD+yjoAXwCN/AbN5P4HhH1oftnrjY=";
hash = "sha256-XY6xuEkQjgWNu8wNvHN3MSFahaRTUyGTbDZejAbHQJ4=";
};

nativeBuildInputs = [
makeWrapper
openjdk17
openjdk
wget
which
gnused
Expand All @@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
postFixup = ''
wrapProgram $out/bin/nextflow \
--prefix PATH : ${lib.makeBinPath nativeBuildInputs} \
--set JAVA_HOME ${openjdk17.home}
--set JAVA_HOME ${openjdk.home}
'';

meta = with lib; {
Expand Down