summaryrefslogtreecommitdiff
path: root/graphs/java/triad/flake.nix
diff options
context:
space:
mode:
authorMartial Simon <msimon_fr@hotmail.com>2025-09-15 01:08:27 +0200
committerMartial Simon <msimon_fr@hotmail.com>2025-09-15 01:08:27 +0200
commitc9b6b9a5ca082fe7c1b6f58d7713f785a9eb6a5c (patch)
tree3e4f42f93c7ae89a364e4d51fff6e5cec4e55fa9 /graphs/java/triad/flake.nix
add: graphs et rushs
Diffstat (limited to 'graphs/java/triad/flake.nix')
-rw-r--r--graphs/java/triad/flake.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/graphs/java/triad/flake.nix b/graphs/java/triad/flake.nix
new file mode 100644
index 0000000..6bf8d07
--- /dev/null
+++ b/graphs/java/triad/flake.nix
@@ -0,0 +1,29 @@
+{
+ description = "Java 2027";
+
+ inputs = {
+ nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
+ flake-utils.url = "github:numtide/flake-utils";
+ };
+
+ outputs = { self, nixpkgs, flake-utils, ... }:
+ flake-utils.lib.eachDefaultSystem (system:
+ let
+ pkgs = import nixpkgs {
+ inherit system;
+ };
+ in
+ with pkgs;
+ {
+ devShell = mkShell {
+ buildInputs = [
+ jdk21_headless
+ postgresql
+ quarkus
+ maven
+ nodejs_22
+ ];
+ };
+ }
+ );
+}