summaryrefslogtreecommitdiffstats
path: root/lib/nix-thin-edge-builder/writeSrcMainRs.nix
blob: b95bca483b2f969df514391285eb45e29e4c95aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs, craneLib, components }:

let
  foo = 1;
in
pkgs.writeText "main.rs" ''
/// This file was generated by nix

fn main() {
  println!("HelloWorld");
}
''