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

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