6 lines
97 B
Nix
6 lines
97 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
with pkgs;
|
|
|
|
mkShell { buildInputs = [ jdk11 maven gnuplot ]; }
|