shell.nix
author Tomas Zeman <tomas@functionals.cz>
Wed, 22 Mar 2023 14:34:51 +0100
changeset 19 1e1ae3342a45
parent 16 e01a46f45b02
permissions -rw-r--r--
DataSet.remove()

{ pkgs ? import <nixpkgs> {} }:

pkgs.mkShell {
  buildInputs = with pkgs; [
    openjdk11
  ];
}