{ lib , stdenv , cmake , ... }: stdenv.mkDerivation { pname = "testing_app"; version = "0.0.0"; src = lib.cleanSource ./.; nativeBuildInputs = [ cmake ]; buildInputs = [ ]; installPhase = '' mkdir -p $out/bin mv src/testing_app/testing_app $out/bin ''; }