Skip to content

Commit

Permalink
add qemu to env
Browse files Browse the repository at this point in the history
  • Loading branch information
undefined-moe committed Aug 7, 2023
1 parent 69b4353 commit 27c75df
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
12 changes: 12 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-22.11;
inputs.flake-utils.url = github:numtide/flake-utils;

outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
{
packages = (import ./default.nix)
{ pkgs = nixpkgs.legacyPackages.${system}; };
}
);
}
1 change: 1 addition & 0 deletions judge.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ pkgs.buildEnv {
ghostscript
xvfb-run
cimg
qemu
]) ++ [
php
] ++ (with pkgs.python3Packages; [
Expand Down

0 comments on commit 27c75df

Please sign in to comment.