templates/c/hello.nix

8 lines
111 B
Nix
Raw Normal View History

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