redox/shell.nix
2018-05-08 10:13:03 +02:00

10 lines
283 B
Nix

with import <nixpkgs> {};
stdenv.mkDerivation {
name = "redox";
hardeningDisable = [ "all" ];
nativeBuildInputs = [ gnumake cmake nasm pkgconfig gcc automake autoconf bison gperf qemu ];
buildInputs = [ openssl gettext libtool flex libpng perl perlPackages.HTMLParser ];
}