Skip to content

Commit 665b165

Browse files
committed
Add flake
1 parent 69b6431 commit 665b165

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

flake.lock

Lines changed: 26 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
description = "Deadeye develop environment";
3+
4+
inputs = {
5+
nixpkgs.url = github:NixOS/nixpkgs;
6+
};
7+
8+
outputs = { self, nixpkgs }:
9+
let
10+
pkgs = import nixpkgs {
11+
system = "x86_64-linux";
12+
};
13+
in
14+
{
15+
16+
devShell.x86_64-linux = pkgs.mkShell {
17+
buildInputs = with pkgs; [ jdk11 ];
18+
shellHook = ''
19+
'';
20+
};
21+
};
22+
}

0 commit comments

Comments
 (0)