Skip to content
Snippets Groups Projects
default.nix 305 B
Newer Older
Jacek Galowicz's avatar
Jacek Galowicz committed
with import (import ./nixpkgs.nix) {};
stdenv.mkDerivation {
  name = "rpn-calculator";
  src = ./.;
  buildInputs = [ catch2 ];
Jacek Galowicz's avatar
Jacek Galowicz committed
  nativeBuildInputs = [ afl ];
Jacek Galowicz's avatar
Jacek Galowicz committed

  doCheck = true;
  checkTarget = "run_test";

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