summary refs log tree commit diff
path: root/pkgs/development/libraries/opencascade-occt
diff options
context:
space:
mode:
authorGabriel Ebner <gebner@gebner.org>2020-10-18 15:13:25 +0200
committerGabriel Ebner <gebner@gebner.org>2020-10-18 15:13:25 +0200
commit27bf7cb663f56009e3cae5632034e63efaf41d4a (patch)
tree357150fe4518f2f36c5198312967ecea8709d2fa /pkgs/development/libraries/opencascade-occt
parent1665d59ac3300f74f1eaa8d136d6f9cf64d11c93 (diff)
opencascade-occt730: remove
Diffstat (limited to 'pkgs/development/libraries/opencascade-occt')
-rw-r--r--pkgs/development/libraries/opencascade-occt/7.3.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/development/libraries/opencascade-occt/7.3.nix b/pkgs/development/libraries/opencascade-occt/7.3.nix
deleted file mode 100644
index 5f8302aff3c10..0000000000000
--- a/pkgs/development/libraries/opencascade-occt/7.3.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ stdenv, fetchurl, fetchpatch, cmake, ninja, tcl, tk,
-  libGL, libGLU, libXext, libXmu, libXi, darwin }:
-
-stdenv.mkDerivation rec {
-  pname = "opencascade-occt";
-  version = "7.3.0p3";
-  commit = "V${builtins.replaceStrings ["."] ["_"] version}";
-
-  src = fetchurl {
-    name = "occt-${commit}.tar.gz";
-    url = "https://git.dev.opencascade.org/gitweb/?p=occt.git;a=snapshot;h=${commit};sf=tgz";
-    sha256 = "0k9c3ypcnjcilq1dhsf6xxbd52gyq4h5rchvp30k3c8ph4ris5pz";
-  };
-
-  nativeBuildInputs = [ cmake ninja ];
-  buildInputs = [ tcl tk libGL libGLU libXext libXmu libXi ]
-    ++ stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Cocoa;
-
-  meta = with stdenv.lib; {
-    description = "Open CASCADE Technology, libraries for 3D modeling and numerical simulation";
-    homepage = "https://www.opencascade.org/";
-    license = licenses.lgpl21;  # essentially...
-    # The special exception defined in the file OCCT_LGPL_EXCEPTION.txt
-    # are basically about making the license a little less share-alike.
-    maintainers = with maintainers; [ amiloradovsky ];
-    platforms = platforms.all;
-  };
-
-}