aboutsummaryrefslogtreecommitdiff
path: root/day2/ex1-hello-world/solution.nix
blob: 8e66b54bdde401b3e7a8b115ca8c8a0a2164ebf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
{bionix}:
with bionix;
  stage {
    name = "hello-world";

    buildInputs = [pkgs.hello];

    buildCommand = ''
      hello > $out
    '';
  }