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