Skip to content

Instantly share code, notes, and snippets.

@typelogic
Created October 3, 2020 12:48
Show Gist options
  • Save typelogic/e8225b14669fab9a4edacbd49066fb37 to your computer and use it in GitHub Desktop.
Save typelogic/e8225b14669fab9a4edacbd49066fb37 to your computer and use it in GitHub Desktop.
nix maven
{ pkgs ? import <nixpkgs> {} }:
let x = pkgs.maven.override {
jdk = pkgs.jdk11;
};
in pkgs.mkShell {
buildInputs = [ x ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment