Skip to content

Instantly share code, notes, and snippets.

@GrafBlutwurst
Created February 26, 2021 11:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GrafBlutwurst/1d22752be7665d224c63e9f7138555ee to your computer and use it in GitHub Desktop.
Save GrafBlutwurst/1d22752be7665d224c63e9f7138555ee to your computer and use it in GitHub Desktop.
shell.nix
{ pkgs ? import <nixpkgs> {} }:
let
sbt = pkgs.sbt.override { jre = pkgs.jre8;};
in
pkgs.mkShell {
buildInputs = [
sbt
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment