Skip to content

Instantly share code, notes, and snippets.

@srhb
Created August 9, 2018 08:40
Show Gist options
  • Save srhb/5e5cac19c6da82f6fd587ebae1305022 to your computer and use it in GitHub Desktop.
Save srhb/5e5cac19c6da82f6fd587ebae1305022 to your computer and use it in GitHub Desktop.
{ stdenv }:
stdenv.mkDerivation rec {
name = "test";
src = ./.;
buildPhase = "gcc test.c";
installPhase = ''
mkdir $out
cp a.out $out/test
'';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment