diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-10 15:46:33 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-10 15:46:33 -0400 |
commit | 65ba015d6c1f248d36ad01a653bc49637804b15b (patch) | |
tree | a77c3fb3ca7ecac8f65eb9638d152f1e90307d0a /shell.nix | |
download | jove-os-65ba015d6c1f248d36ad01a653bc49637804b15b.tar.gz jove-os-65ba015d6c1f248d36ad01a653bc49637804b15b.tar.bz2 jove-os-65ba015d6c1f248d36ad01a653bc49637804b15b.zip |
working usermode objdir iteration
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..f59b6de --- /dev/null +++ b/shell.nix @@ -0,0 +1,30 @@ +{ pkgs ? import <nixpkgs> {} }: +pkgs.mkShell { + name = "jove-build-env"; + buildInputs = with pkgs; [ + # Library depends + gmp gmp.dev + isl + libffi libffi.dev + libmpc + libxcrypt + mpfr mpfr.dev + xz xz.dev + zlib zlib.dev + + m4 + bison + flex + texinfo + automake115x + autoconf269 + + gcc + stdenv.cc + stdenv.cc.libc stdenv.cc.libc_dev + + # Test suite + qemu_kvm + parted + ]; +} |