12 lines
257 B
Nix
12 lines
257 B
Nix
{
|
|
assign1-hello = { stdenv }:
|
|
stdenv.mkDerivation {
|
|
name = "hello";
|
|
src = ./.;
|
|
buildPhase = "gcc c-programs/hello.c -o hello";
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
install hello $out/bin/hello
|
|
'';
|
|
};
|
|
}
|