1 2 3 4 5 6 7 8 9 10 11 12 13
{ stdenv, fetchgit, kernel, initramfs, limine, rootfs }: stdenv.mkDerivation { name = "iso-yerba"; src = ./.; buildPhase = '' echo "todo actually build iso" mkdir -p $out ''; installPhase = '' echo "todo actually install iso" ''; }