diff options
Diffstat (limited to 'nix/rootfs.nix')
| -rw-r--r-- | nix/rootfs.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nix/rootfs.nix b/nix/rootfs.nix index e69de29..ab6c6b4 100644 --- a/nix/rootfs.nix +++ b/nix/rootfs.nix @@ -0,0 +1,12 @@ +{ stdenv, fetchgit }: + +stdenv.mkDerivation { + name = "rootfs-yerba"; + src = ./.; + buildPhase = '' + echo "todo actually build rootfs" + ''; + installPhase = '' + echo "todo actually install rootfs" + ''; +} |
