mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 22:20:30 +03:00

In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
75 lines
1.6 KiB
Nix
75 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
python,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
Cocoa,
|
|
fontconfig,
|
|
freetype,
|
|
libGL,
|
|
libGLU,
|
|
libX11,
|
|
libXext,
|
|
libXi,
|
|
libXmu,
|
|
opencascade-occt,
|
|
rapidjson,
|
|
swig,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pythonocc-core";
|
|
version = "7.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tpaviot";
|
|
repo = "pythonocc-core";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-45pqPQ07KYlpFwJSAYVHbzuqDQTbAvPpxReal52DCzU=";
|
|
};
|
|
|
|
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
|
|
rapidjson
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ Cocoa ];
|
|
|
|
cmakeFlags = [
|
|
"-Wno-dev"
|
|
"-DPYTHONOCC_INSTALL_DIRECTORY=${placeholder "out"}/${python.sitePackages}/OCC"
|
|
];
|
|
|
|
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; [ gebner ];
|
|
};
|
|
}
|