summaryrefslogtreecommitdiff
path: root/trivionomicon/templates/system-flake/pkgs/hello-world/default.nix
blob: 19047a1f2b1e854259a81aea6dc4ca6fa8da0368 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{stdenv, ...}:
stdenv.mkDerivation {
  name = "hello-world";
  version = "1.0.0";

  src = ./.;

  installPhase = ''
    mkdir -p $out/bin
    cp hello-world $out/bin
  '';

  meta.mainProgram = "hello-world";
}