We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9ce846 commit 0ff042bCopy full SHA for 0ff042b
pkgs/opencascade-occt/default.nix
@@ -1,5 +1,6 @@
1
{
2
lib,
3
+ fetchpatch,
4
stdenv,
5
fetchurl,
6
cmake,
@@ -19,7 +20,6 @@
19
20
freeimage,
21
enableFreeimage ? false,
22
}:
-
23
stdenv.mkDerivation rec {
24
pname = "opencascade-occt";
25
version = "7.7.2";
@@ -31,6 +31,13 @@ stdenv.mkDerivation rec {
31
sha256 = "sha256-M0G/pJuxsJu5gRk0rIgC173/XxI1ERpmCtWjgr/0dyY=";
32
};
33
34
+ patches = [
35
+ (fetchpatch {
36
+ url = "https://raw.githubusercontent.com/conda-forge/occt-feedstock/00ff0f68644d9582a4c30c01220e7de0f934d427/recipe/patches/blobfish.patch";
37
+ sha256 = "sha256-5tqkx7W7VBw7qaseFgwBENKbGQ0iUYEL6SJHwGI9L/g=";
38
+ })
39
+ ];
40
+
41
nativeBuildInputs = [
42
cmake
43
ninja
0 commit comments