8 stdenv.mkDerivation (finalAttrs: {
9 pname = "abc-verifier";
10 version = "unstable-2023-10-13";
12 src = fetchFromGitHub {
15 rev = "896e5e7dedf9b9b1459fa019f1fa8aa8101fdf43";
16 hash = "sha256-ou+E2lvDEOxXRXNygE/TyVi7quqk+CJHRI+HDI0xljE=";
19 nativeBuildInputs = [ cmake ];
20 buildInputs = [ readline ];
24 install -Dm755 'abc' "$out/bin/abc"
29 passthru.rev = finalAttrs.src.rev;
32 description = "Tool for squential logic synthesis and formal verification";
33 homepage = "https://people.eecs.berkeley.edu/~alanmi/abc";
34 license = licenses.mit;
35 maintainers = with maintainers; [ thoughtpolice Luflosi ];
37 platforms = platforms.unix;