whitespace

module-based-network
Daniel Barlow 2023-04-10 17:46:39 +01:00
parent 18b35b1ca6
commit 2e15acd61c
2 changed files with 5 additions and 4 deletions

View File

@ -20,8 +20,7 @@
; ;
inherit (pkgs.liminix.services) oneshot longrun bundle target; inherit (pkgs.liminix.services) oneshot longrun bundle target;
inherit (pkgs.pseudofile) dir symlink; inherit (pkgs.pseudofile) dir symlink;
inherit (pkgs) writeText dropbear ifwait serviceFns inherit (pkgs) writeText dropbear ifwait serviceFns;
;
in rec { in rec {
boot = { boot = {
tftp = { tftp = {

View File

@ -22,8 +22,10 @@ stdenv.mkDerivation rec {
inherit src extraPatchPhase; inherit src extraPatchPhase;
hardeningDisable = ["all"]; hardeningDisable = ["all"];
nativeBuildInputs = [buildPackages.stdenv.cc] ++ nativeBuildInputs = [buildPackages.stdenv.cc] ++
(with buildPackages.pkgs; (with buildPackages.pkgs; [
[rsync bc bison flex pkgconfig openssl ncurses.all perl]); rsync bc bison flex pkgconfig
openssl ncurses.all perl
]);
CC = "${stdenv.cc.bintools.targetPrefix}gcc"; CC = "${stdenv.cc.bintools.targetPrefix}gcc";
HOSTCC = with buildPackages.pkgs; HOSTCC = with buildPackages.pkgs;
"gcc -I${openssl}/include -I${ncurses}/include"; "gcc -I${openssl}/include -I${ncurses}/include";