agregar default.nix

This commit is contained in:
Eduardo Quiros 2021-07-25 20:43:09 -06:00
parent a4badf7b7e
commit 7e52f105f8
No known key found for this signature in database
GPG Key ID: B77F36C3F12720B4
1 changed files with 11 additions and 0 deletions

11
default.nix Normal file
View File

@ -0,0 +1,11 @@
with import <nixpkgs> { };
mkShell {
nativeBuildInputs = [
bashInteractive
maven
];
buildInputs = [
openjdk11
nodejs-14_x
];
}