We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d35c647 commit aa9fedaCopy full SHA for aa9feda
flake.nix
@@ -0,0 +1,25 @@
1
+{
2
+ description = "Preliminary devshell support for WalletLedgerExport";
3
+
4
+ inputs = {
5
+ nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
6
+ };
7
8
+ outputs = { self, nixpkgs, flake-utils }:
9
+ let
10
+ in {
11
+ devShells = forEachSystem (system:
12
13
+ pkgs = import nixpkgs { inherit system; };
14
15
+ default = pkgs.mkShell {
16
+ buildInputs = [
17
+ pkgs.jdk # JDK 21 (We're still building with ./gradlew, so install JDK not gradle)
18
+ ];
19
+ shellHook = ''
20
+ echo "Welcome to WalletLedgerExport"
21
+ '';
22
23
+ });
24
25
+}
0 commit comments