]> Git — Sourcephile - julm/julm-nix.git/blob - nixpkgs/overlays/freecad.nix
irssi: improve config of windows
[julm/julm-nix.git] / nixpkgs / overlays / freecad.nix
1 self: super: {
2 freecad = self.libsForQt5.callPackage ../pkgs/freecad.nix {
3 spaceNavSupport = false;
4 inherit (self.xorg)
5 libXmu;
6 inherit (self)
7 fetchFromGitHub
8 fetchpatch
9 cmake
10 ninja
11 coin3d
12 eigen
13 gfortran
14 gts
15 hdf5
16 libGLU
17 libf2c
18 libspnav
19 medfile
20 ode
21 opencascade-occt
22 pkg-config
23 swig
24 vtk
25 xercesc
26 zlib;
27 mpi = self.openmpi;
28 inherit (self.python3Packages)
29 GitPython
30 boost
31 matplotlib
32 pivy
33 pycollada
34 pyside2
35 pyside2-tools
36 python
37 pyyaml
38 scipy
39 shiboken2;
40 };
41 }