redox/shell.nix

10 lines
283 B
Nix
Raw Normal View History

2018-05-08 10:13:03 +02:00
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 ];
}