Skip to content

Commit

Permalink
Add nextflow to Nix flake
Browse files Browse the repository at this point in the history
  • Loading branch information
Bond-009 committed Oct 17, 2024
1 parent 9981861 commit 22df238
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
java-deps = [ pkgs.openjdk21 pkgs.checkstyle ];
kotlin-deps = [ pkgs.kotlin pkgs.ktlint ];
csharp-deps = [ pkgs.dotnetCorePackages.sdk_8_0 ];
nextflow-deps = [ pkgs.groovy nextflow-linter ];
nextflow-deps = [ pkgs.nextflow pkgs.groovy nextflow-linter ];

all-other-dependencies = haskell-deps ++ node-deps ++ bash-deps
++ c-deps ++ java-deps ++ kotlin-deps ++ csharp-deps ++ nextflow-deps
Expand Down Expand Up @@ -180,6 +180,10 @@
name = "NODE_PATH";
prefix = "${ast}/lib/node_modules";
}
{
name = "NXF_VER";
eval = "${builtins.head (pkgs.lib.splitString "-" pkgs.nextflow.version)}";
}
];
commands = [
{
Expand Down

0 comments on commit 22df238

Please sign in to comment.