We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55b0a2a commit 4dbc08fCopy full SHA for 4dbc08f
1 file changed
content/docs/Hydro/install/compiler.mdx
@@ -13,7 +13,7 @@ title: 编译器和语言
13
以下是常用编译器的示例:
14
15
```sh
16
-nix-env -iA nixpkgs.coreutils nixpkgs.bash nixpkgs.gawk nixpkgs.unzip # 基础组件,已预装,不建议删除
+nix-env -iA nixpkgs.coreutils nixpkgs.bash nixpkgs.gawk nixpkgs.unzip nixpkgs.diffutils # 基础组件,已预装,请勿删除
17
nix-env -iA nixpkgs.gcc nixpkgs.fpc # C/C++ 和 Pascal,已预装,不建议删除
18
nix-env -iA nixpkgs.ghc # Haskell
19
nix-env -iA nixpkgs.rustc # Rust
@@ -92,7 +92,7 @@ c:
92
pkgs.buildEnv {
93
name = "hydrojudge-rootfs";
94
paths = with pkgs; [
95
- coreutils bash nix zip unzip gcc gawk
+ coreutils bash nix zip unzip gcc gawk diffutils
96
# 上方包是评测所需要的,请勿删除,
97
# 在下方列出你所需要的包,查找方式同上文:
98
fpc python3 rustc
0 commit comments