8 lines
111 B
Nix
8 lines
111 B
Nix
{ stdenv }:
|
|
stdenv.mkDerivation {
|
|
name = "hello";
|
|
src = ./.;
|
|
|
|
env.BINDIR = "${placeholder "out"}/bin";
|
|
}
|