{ 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 ''; }; }