This commit is contained in:
Yarmo Mackenbach 2024-08-12 10:47:19 +02:00
commit dad77f64ec
No known key found for this signature in database
GPG key ID: 2B71CD64664999B6
6 changed files with 209 additions and 0 deletions

20
flake.nix Normal file
View file

@ -0,0 +1,20 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, utils }:
utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShell = with pkgs; mkShell {
buildInputs = [
jdk
antlr
];
};
});
}