-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell.nix
39 lines (34 loc) · 958 Bytes
/
shell.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Set up the project with nix
# cf https://github.com/Kpler/ct-webserver#option-2-using-nix
let
jdk = pkgs.openjdk11;
config = {
packageOverrides = p: rec {
sbt = p.sbt.overrideAttrs (
old: rec {
version = "1.6.2";
src = builtins.fetchurl {
url = "https://github.com/sbt/sbt/releases/download/v${version}/sbt-${version}.tgz";
sha256 = "0h6lmmpv6qnz0crx4700145lh4ibwdhl0dndcamh9yp6qjv3fxk3";
};
patchPhase = ''
echo -java-home ${jdk} >> conf/sbtopts
'';
}
);
};
};
nixpkgs = builtins.fetchTarball {
name = "nixos-21.05";
url = "https://github.com/NixOS/nixpkgs/archive/1f91fd104066.tar.gz";
sha256 = "1lcfcwgal9fpaiq71981abyzz160r6nx1y4pyy1dnvaf951xkdcj";
};
pkgs = import nixpkgs { inherit config; };
in
pkgs.mkShell {
buildInputs = [
jdk
pkgs.sbt
pkgs.pre-commit
];
}