mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-23 10:09:54 +00:00
8 lines
117 B
Nix
8 lines
117 B
Nix
{ pkgs ? import (fetchTarball "channel:nixos-23.05") {} }:
|
|
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
pkgs.nodejs
|
|
];
|
|
}
|