Add shell.nix for NixOS users

This commit is contained in:
jD91mZM2 2018-05-08 10:13:03 +02:00
parent 82b7885619
commit f244c636f8
No known key found for this signature in database
GPG key ID: 3055D54729A72666

9
shell.nix Normal file
View file

@ -0,0 +1,9 @@
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 ];
}