direnv(1)/nix setup
authorTomas Zeman <tomas@functionals.cz>
Thu, 29 Apr 2021 09:50:58 +0200
changeset 39 d671d57178fc
parent 38 be844ade3150
child 40 4979d1ecb377
direnv(1)/nix setup
.envrc
.hgignore
shell.nix
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.envrc	Thu Apr 29 09:50:58 2021 +0200
@@ -0,0 +1,1 @@
+use nix
--- a/.hgignore	Sat Dec 26 14:24:11 2020 +0100
+++ b/.hgignore	Thu Apr 29 09:50:58 2021 +0200
@@ -8,3 +8,4 @@
 .idea
 out
 .idea_modules
+.direnv
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/shell.nix	Thu Apr 29 09:50:58 2021 +0200
@@ -0,0 +1,7 @@
+{ pkgs ? import <nixpkgs> {} }:
+
+pkgs.mkShell {
+  buildInputs = with pkgs; [
+    openjdk8
+  ];
+}