aboutsummaryrefslogtreecommitdiff
path: root/nix/rootfs.nix
blob: 4a771be0daca1c5d832e02108eeffcd6f1802064 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ stdenv, fetchgit, busybox }:

stdenv.mkDerivation {
	name = "rootfs-yerba";
	src = ./.;
	buildPhase = ''
		echo "todo actually build rootfs"
		mkdir -p $out
	'';
	installPhase = ''
		echo "todo actually install rootfs"
	'';
}