CS3502/assign1/default.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
'';
};
}