opae: drop (#451005)
This commit is contained in:
@@ -1,67 +0,0 @@
|
||||
{
|
||||
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;
|
||||
};
|
||||
}
|
||||
@@ -1964,6 +1964,7 @@ mapAliases {
|
||||
onevpl-intel-gpu = lib.warnOnInstantiate "onevpl-intel-gpu has been renamed to vpl-gpu-rt" vpl-gpu-rt; # Added 2024-06-04
|
||||
onscripter-en = throw "onscripter-en has been removed due to lack of maintenance in both upstream and Nixpkgs; onscripter is available instead"; # Added 2025-10-17
|
||||
onthespot = throw "onethespot has been removed due to lack of upstream maintenance"; # Added 2025-09-26
|
||||
opae = throw "opae has been removed because it has been marked as broken since June 2023."; # Added 2025-10-11
|
||||
openai-triton-llvm = triton-llvm; # added 2024-07-18
|
||||
openai-whisper-cpp = whisper-cpp; # Added 2024-12-13
|
||||
openbabel2 = throw "openbabel2 has been removed, as it was unused and unmaintained upstream; please use openbabel"; # Added 2025-09-17
|
||||
|
||||
Reference in New Issue
Block a user