{ lib, stdenv, fetchFromGitHub , readline, cmake }: stdenv.mkDerivation rec { pname = "abc-verifier"; version = "2022.05.06"; src = fetchFromGitHub { owner = "yosyshq"; repo = "abc"; rev = "09a7e6dac739133a927ae7064d319068ab927f90"; hash = "sha256-+1UcYjK2mvhlTHl6lVCcj5q+1D8RUTquHaajSl5NuJg="; }; nativeBuildInputs = [ cmake ]; buildInputs = [ readline ]; installPhase = "mkdir -p $out/bin && mv abc $out/bin"; # needed by yosys passthru.rev = src.rev; meta = with lib; { description = "A tool for squential logic synthesis and formal verification"; homepage = "https://people.eecs.berkeley.edu/~alanmi/abc"; license = licenses.mit; maintainers = with maintainers; [ thoughtpolice ]; mainProgram = "abc"; platforms = platforms.unix; }; }