mirror of
https://github.com/RGBCube/serenity
synced 2025-07-29 04:17:35 +00:00
nix: Clean up files, use good practices
This commit is contained in:
parent
3a8bde9ef2
commit
52498f9c79
7 changed files with 55 additions and 94 deletions
30
Toolchain/default.nix
Normal file
30
Toolchain/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ pkgs ? import <nixpkgs> { } }: with pkgs;
|
||||
|
||||
mkShell.override { stdenv = gcc13Stdenv; } {
|
||||
packages = [
|
||||
ccache
|
||||
cmake
|
||||
curl
|
||||
e2fsprogs
|
||||
fuse2fs
|
||||
gcc13
|
||||
gmp
|
||||
# To create port launcher icons
|
||||
imagemagick
|
||||
libmpc
|
||||
mpfr
|
||||
ninja
|
||||
patch
|
||||
pkg-config
|
||||
rsync
|
||||
texinfo
|
||||
unzip
|
||||
# To build the GRUB disk image
|
||||
grub2
|
||||
libxcrypt
|
||||
openssl
|
||||
parted
|
||||
qemu
|
||||
python3
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue