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