mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 23:44:17 +08:00
10 lines
283 B
Nix
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 ];
|
|
}
|