aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Bedo <cu@cua0.org>2022-10-12 13:48:35 +1100
committerJustin Bedo <cu@cua0.org>2022-10-13 16:44:56 +1100
commit9f873ae3656420dc5b28aa54cc52781c233c061c (patch)
treec138c35605fbb959e3a8ec349f1ea54e37075994
parent6d4eda503340e41880bd993a0838a31a9a20f7df (diff)
day2 ex2: strip out comments
-rw-r--r--day2/ex1-hello-world/solution.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/day2/ex1-hello-world/solution.nix b/day2/ex1-hello-world/solution.nix
index d0531a2..8e66b54 100644
--- a/day2/ex1-hello-world/solution.nix
+++ b/day2/ex1-hello-world/solution.nix
@@ -1,16 +1,3 @@
-/*
- This first exercise demonstrates how to define a processing stage,
-which is just instructions on how to compute an output (the
-`buildCommand`) from some inputs (in this case, there are no inputs).
-Each stage must minimally define a `name`, shell code to build the
-output in `buildCommand`, and any software that's required in
-`buildInputs`. Note that `buildInputs = []` if not defined, meaning no
-extra requirements over the standard environment.
-
-Try replacing the echo below with output from the GNU hello program.
-Hint: the GNU hello program is available at `pkgs.hello` and the
-executable is called `hello`.
-*/
{bionix}:
with bionix;
stage {