Skip to content

Commit

Permalink
🎨 nix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
comavius committed Jan 10, 2025
1 parent 96fec32 commit 1e1f648
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
22 changes: 12 additions & 10 deletions exec-container/compilers/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,16 @@ in {
raku
java
];
traojudge = [
#golang.traojudge
brainfuck.traojudge
#rust.traojudge
#koka.traojudge
#mercury.traojudge
#cobol.traojudge
#haxe.traojudge
#raku.traojudge
] ++ java.traojudge.languages;
traojudge =
[
#golang.traojudge
brainfuck.traojudge
#rust.traojudge
#koka.traojudge
#mercury.traojudge
#cobol.traojudge
#haxe.traojudge
#raku.traojudge
]
++ java.traojudge.languages;
}
7 changes: 3 additions & 4 deletions exec-container/compilers/java/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{pkgs}:
let
{pkgs}: let
openjdk = pkgs.jdk23;
in
pkgs.stdenv.mkDerivation {
Expand All @@ -11,7 +10,8 @@ in
ln -s ${openjdk}/bin/java $out/bin/java
ln -s ${openjdk}/bin/javac $out/bin/javac
'';
} // {
}
// {
traojudge = {
languages = [
{
Expand All @@ -26,4 +26,3 @@ in
];
};
}

0 comments on commit 1e1f648

Please sign in to comment.