Typicalc/shell.nix

21 lines
406 B
Nix
Raw Permalink Normal View History

2021-06-15 10:25:59 +00:00
with (import <nixpkgs> {});
let
mavenJdk11 = maven.override {
jdk = pkgs.jdk11;
};
my-python3-packages = python3-packages: with python3-packages; [
lxml
];
python3-with-my-packages = pkgs.python3.withPackages my-python3-packages;
in
mkShell {
nativeBuildInputs = [
file
ripgrep
2023-10-23 12:15:57 +00:00
# mavenJdk11
nodejs-18_x
2021-06-15 10:25:59 +00:00
which # required by Vaadin
python3-with-my-packages
];
}