Typicalc/shell.nix

14 lines
177 B
Nix
Raw Normal View History

2021-06-15 10:17:06 +00:00
with (import <nixpkgs> {});
let mavenJdk11 = maven.override {
jdk = pkgs.jdk11;
};
in
mkShell {
nativeBuildInputs = [
file
ripgrep
mavenJdk11
python3
];
}