nixpkgs/pkgs/by-name/ab/abc-verifier/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
925 B
Nix
Raw Normal View History

{
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; {
2017-07-15 07:26:38 +00:00
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;
};
})