Created
October 3, 2020 12:48
-
-
Save typelogic/e8225b14669fab9a4edacbd49066fb37 to your computer and use it in GitHub Desktop.
nix maven
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ 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