shell.nix
author Tomas Zeman <tomas@functionals.cz>
Thu, 29 Apr 2021 09:50:58 +0200
changeset 39 d671d57178fc
permissions -rw-r--r--
direnv(1)/nix setup
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
39
d671d57178fc direnv(1)/nix setup
Tomas Zeman <tomas@functionals.cz>
parents:
diff changeset
     1
{ pkgs ? import <nixpkgs> {} }:
d671d57178fc direnv(1)/nix setup
Tomas Zeman <tomas@functionals.cz>
parents:
diff changeset
     2
d671d57178fc direnv(1)/nix setup
Tomas Zeman <tomas@functionals.cz>
parents:
diff changeset
     3
pkgs.mkShell {
d671d57178fc direnv(1)/nix setup
Tomas Zeman <tomas@functionals.cz>
parents:
diff changeset
     4
  buildInputs = with pkgs; [
d671d57178fc direnv(1)/nix setup
Tomas Zeman <tomas@functionals.cz>
parents:
diff changeset
     5
    openjdk8
d671d57178fc direnv(1)/nix setup
Tomas Zeman <tomas@functionals.cz>
parents:
diff changeset
     6
  ];
d671d57178fc direnv(1)/nix setup
Tomas Zeman <tomas@functionals.cz>
parents:
diff changeset
     7
}