depot/third_party/nixpkgs/pkgs/applications/science/logic/abc/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

39 lines
917 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, readline
, cmake
}:
stdenv.mkDerivation (finalAttrs: {
pname = "abc-verifier";
version = "unstable-2023-10-13";
src = fetchFromGitHub {
owner = "yosyshq";
repo = "abc";
rev = "896e5e7dedf9b9b1459fa019f1fa8aa8101fdf43";
hash = "sha256-ou+E2lvDEOxXRXNygE/TyVi7quqk+CJHRI+HDI0xljE=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ readline ];
installPhase = ''
runHook preInstall
install -Dm755 'abc' "$out/bin/abc"
runHook postInstall
'';
# needed by yosys
passthru.rev = finalAttrs.src.rev;
meta = with lib; {
description = "Tool for squential logic synthesis and formal verification";
homepage = "https://people.eecs.berkeley.edu/~alanmi/abc";
license = licenses.mit;
maintainers = with maintainers; [ thoughtpolice Luflosi ];
mainProgram = "abc";
platforms = platforms.unix;
};
})