mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-18 14:00:23 +08:00
They are not doing anything right now. This is in preparation for their complete removal from the tree. Note: several changes that affect the derivation inputs (e.g. removal of references to stub paths in build instructions) were left out. They will be cleaned up the next iteration and will require special care. Note: this PR is a result of a mix of ugly regex (not AST) based automation and some manual labor. For reference, the regex automation part was hacked in: https://github.com/booxter/nix-clean-apple_sdk Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
78 lines
1.5 KiB
Nix
78 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
python,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
fontconfig,
|
|
freetype,
|
|
libGL,
|
|
libGLU,
|
|
libX11,
|
|
libXext,
|
|
libXi,
|
|
libXmu,
|
|
opencascade-occt,
|
|
numpy,
|
|
rapidjson,
|
|
swig,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pythonocc-core";
|
|
version = "7.8.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tpaviot";
|
|
repo = "pythonocc-core";
|
|
tag = version;
|
|
hash = "sha256-0o2PQEN0/Z7FUPZEo2HxFFa+mN2bZnYI++HVu4ONpNA=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace "/usr/X11R6/lib/libGL.dylib" "${libGL}/lib/libGL.dylib" \
|
|
--replace "/usr/X11R6/lib/libGLU.dylib" "${libGLU}/lib/libGLU.dylib"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
swig
|
|
];
|
|
buildInputs = [
|
|
python
|
|
opencascade-occt
|
|
freetype
|
|
libGL
|
|
libGLU
|
|
libX11
|
|
libXext
|
|
libXmu
|
|
libXi
|
|
fontconfig
|
|
numpy
|
|
rapidjson
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-Wno-dev"
|
|
"-DPYTHONOCC_INSTALL_DIRECTORY=${placeholder "out"}/${python.sitePackages}/OCC"
|
|
"-DPYTHONOCC_MESHDS_NUMPY=on"
|
|
];
|
|
|
|
passthru = {
|
|
# `python3Packages.pythonocc-core` must be updated in tandem with
|
|
# `opencascade-occt`, and including it in the bulk updates often breaks it.
|
|
skipBulkUpdate = true;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Python wrapper for the OpenCASCADE 3D modeling kernel";
|
|
homepage = "https://github.com/tpaviot/pythonocc-core";
|
|
changelog = "https://github.com/tpaviot/pythonocc-core/releases/tag/${version}";
|
|
license = licenses.lgpl3;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|