aboutsummaryrefslogtreecommitdiff
path: root/pkgs/wait4file/default.nix
blob: e7387cf5b895429b28085798ef9d739aa68bf85b (plain)
1
2
3
4
5
{ gcc, runCommand, ... }:
let
  cc = "${gcc}/bin/gcc -Wall -Wextra -Werror -O2";
in runCommand "wait4file" {} "${cc} -o $out ${./wait4file.c}"