templates/c/hello.nix
2024-05-07 23:48:25 +02:00

8 lines
111 B
Nix

{ stdenv }:
stdenv.mkDerivation {
name = "hello";
src = ./.;
env.BINDIR = "${placeholder "out"}/bin";
}