nixpkgs-suyu/pkgs/applications/science/electronics/hal-hardware-analyzer/default.nix

53 lines
1.8 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, ninja, pkg-config, python3Packages
2020-01-04 17:56:05 +01:00
, boost, rapidjson, qtbase, qtsvg, igraph, spdlog, wrapQtAppsHook
, fmt, graphviz, llvmPackages, z3
2020-01-04 17:56:05 +01:00
}:
stdenv.mkDerivation rec {
2021-10-30 00:20:48 +02:00
version = "3.3.0";
2020-01-04 17:56:05 +01:00
pname = "hal-hardware-analyzer";
src = fetchFromGitHub {
owner = "emsec";
repo = "hal";
rev = "v${version}";
2021-10-30 00:20:48 +02:00
sha256 = "sha256-uNpELHhSAVRJL/4iypvnl3nX45SqB419r37lthd2WmQ=";
2020-01-04 17:56:05 +01:00
};
# make sure bundled dependencies don't get in the way - install also otherwise
# copies them in full to the output, bloating the package
postPatch = ''
2020-12-11 23:02:45 +01:00
shopt -s extglob
rm -rf deps/!(sanitizers-cmake)/*
shopt -u extglob
2020-01-04 17:56:05 +01:00
'';
nativeBuildInputs = [ cmake ninja pkg-config ];
buildInputs = [ qtbase qtsvg boost rapidjson igraph spdlog fmt graphviz wrapQtAppsHook z3 ]
2020-01-04 17:56:05 +01:00
++ (with python3Packages; [ python pybind11 ])
2021-01-15 14:21:58 +01:00
++ lib.optional stdenv.cc.isClang llvmPackages.openmp;
2020-01-04 17:56:05 +01:00
2021-01-15 14:21:58 +01:00
cmakeFlags = with lib.versions; [
2020-01-04 17:56:05 +01:00
"-DHAL_VERSION_RETURN=${version}"
"-DHAL_VERSION_MAJOR=${major version}"
"-DHAL_VERSION_MINOR=${minor version}"
"-DHAL_VERSION_PATCH=${patch version}"
"-DHAL_VERSION_TWEAK=0"
"-DHAL_VERSION_ADDITIONAL_COMMITS=0"
"-DHAL_VERSION_DIRTY=false"
"-DHAL_VERSION_BROKEN=false"
"-DENABLE_INSTALL_LDCONFIG=off"
"-DBUILD_ALL_PLUGINS=on"
];
# needed for macos build - this is why we use wrapQtAppsHook instead of
# the qt mkDerivation - the latter forcibly overrides this.
cmakeBuildType = "MinSizeRel";
meta = with lib; {
2020-01-04 17:56:05 +01:00
description = "A comprehensive reverse engineering and manipulation framework for gate-level netlists";
homepage = "https://github.com/emsec/hal";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ ris shamilton ];
2020-01-04 17:56:05 +01:00
};
}