Skip to content

Commit

Permalink
Cleaned up flake.nix on main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
ginkogruen committed Oct 17, 2024
1 parent 522b549 commit 1e2a2f1
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,13 @@
];
};

/*
packages = {
backend = pkgs.stdenv.mkDerivation {
pname = "backend";
version = "1.0";
src = ./backend;
buildInputs = with pkgs; [maven jdk17];
buildPhase = "mvn package";
installPhase = ''
mkdir -p $out/bin
cp target/landingpage-backend.jar $out/bin/
'';
meta = {
description = "Java backend watching various service status";
license = pkgs.lib.licenses.mit;
Expand All @@ -52,12 +47,14 @@
pname = "frontend";
version = "1.0";
src = ./frontend;
meta = {
description = "JavaScript frontend displaying service status";
license = pkgs.lib.licenses.mit;
};
};
};
*/
}
)
// {
Expand Down

0 comments on commit 1e2a2f1

Please sign in to comment.