blob: b27924df18697976f5134f88030d6e35cdeff26a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ stdenv, fetchgit, kernel, initramfs, limine, rootfs }:
stdenv.mkDerivation {
name = "iso-yerba";
src = ./.;
buildPhase = ''
echo "todo actually build iso"
'';
installPhase = ''
echo "todo actually install iso"
'';
}
|