Skip to content

Commit 013a8d2

Browse files
committed
Support nix shell environment.
1 parent 2341b16 commit 013a8d2

File tree

3 files changed

+53
-0
lines changed

3 files changed

+53
-0
lines changed

.envrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
use flake

flake.lock

+25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
description = "A Nix-flake-based EventStoreDB Java client development environment";
3+
4+
inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.*.tar.gz";
5+
6+
outputs = { self, nixpkgs }:
7+
let
8+
javaVersion = 11; # Change this value to update the whole stack
9+
overlays = [
10+
(final: prev: rec {
11+
jdk = prev."jdk${toString javaVersion}";
12+
# gradle = prev.gradle.override { java = jdk; };
13+
})
14+
];
15+
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
16+
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
17+
pkgs = import nixpkgs { inherit overlays system; };
18+
});
19+
in
20+
{
21+
devShells = forEachSupportedSystem ({ pkgs }: {
22+
default = pkgs.mkShell {
23+
packages = with pkgs; [ jdk11 ];
24+
};
25+
});
26+
};
27+
}

0 commit comments

Comments
 (0)