Files
nixpkgs/pkgs/by-name/op/opae/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

68 lines
1.3 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
cmake,
libuuid,
json_c,
doxygen,
perl,
python3,
}:
stdenv.mkDerivation rec {
pname = "opae";
version = "1.0.0";
# the tag has a silly name for some reason. drop this in the future if
# possible
tver = "${version}-5";
src = fetchFromGitHub {
owner = "opae";
repo = "opae-sdk";
tag = tver;
sha256 = "1dmkpnr9dqxwjhbdzx2r3fdfylvinda421yyg319am5gzlysxwi8";
};
doCheck = false;
env.NIX_CFLAGS_COMPILE = toString [
"-Wno-error=format-truncation"
"-Wno-error=address-of-packed-member"
"-Wno-array-bounds"
];
nativeBuildInputs = [
cmake
doxygen
perl
python3.pkgs.sphinx
];
buildInputs = [
libuuid
json_c
python3
];
# Set the Epoch to 1980; otherwise the Python wheel/zip code
# gets very angry
preConfigure = ''
find . -type f | while read file; do
touch -d @315532800 $file;
done
'';
cmakeFlags = [ "-DBUILD_ASE=1" ];
meta = with lib; {
description = "Open Programmable Acceleration Engine SDK";
homepage = "https://01.org/opae";
license = licenses.bsd3;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ thoughtpolice ];
# Needs a major update, not compatible with gcc-11.
broken = true;
};
}