summaryrefslogblamecommitdiffstats
path: root/shell.nix
blob: 7905cf39cd78f7d010a41251ee207266da71455f (plain) (tree)




























                                     
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
  name = "jove-build-env";
  hardeningDisable = [ "format" ];
  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

    gcc
    stdenv.cc
    stdenv.cc.libc stdenv.cc.libc_dev

    # Test suite
    qemu_kvm
    parted
  ];
}