Skip to content
Snippets Groups Projects
default.nix 258 B
Newer Older
Florian Steinkamp's avatar
Florian Steinkamp committed
with import (import ./nixpkgs.nix) {};
stdenv.mkDerivation {
  name = "fuzzer-example";
  src = ./.;
  nativeBuildInputs = [ afl ];
  buildInputs = [ catch2 ];
Florian Steinkamp's avatar
Florian Steinkamp committed

  installPhase = ''
    mkdir -p $out
    find . -executable -type f -exec cp {} $out \;
  '';
}