nixpkgs/pkgs/applications/science/electronics/kicad/default.nix

145 lines
5.6 KiB
Nix
Raw Normal View History

2019-12-15 04:30:15 +01:00
{ lib, stdenv, gnome3, pkgs, wxGTK30, wxGTK31
, gsettings-desktop-schemas, hicolor-icon-theme
, callPackage, callPackages
, librsvg, cups
2019-11-05 04:15:14 +01:00
, pname ? "kicad"
, oceSupport ? false, opencascade
, withOCCT ? true, opencascade-occt
2018-07-26 14:47:07 +02:00
, ngspiceSupport ? true, libngspice
2019-12-15 04:30:15 +01:00
, scriptingSupport ? true, swig, python3, python3Packages
2019-11-05 04:15:14 +01:00
, debug ? false, valgrind
, with3d ? true
2019-12-15 04:30:15 +01:00
, withI18n ? true
2018-07-26 14:47:07 +02:00
}:
2018-07-26 14:47:07 +02:00
assert ngspiceSupport -> libngspice != null;
2016-03-31 04:26:54 +02:00
2018-07-26 14:47:07 +02:00
with lib;
let
2019-12-15 04:30:15 +01:00
stable = pname != "kicad-unstable";
baseName = if (stable) then "kicad" else "kicad-unstable";
2019-12-15 04:30:15 +01:00
versions = import ./versions.nix;
versionConfig = versions.${baseName};
2019-12-15 04:30:15 +01:00
wxGTK = if (stable)
# wxGTK3x may default to withGtk2 = false, see #73145
then wxGTK30.override { withGtk2 = false; }
# wxGTK31 currently introduces an issue with opening the python interpreter in pcbnew
# but brings high DPI support?
else wxGTK31.override { withGtk2 = false; };
pythonPackages = python3Packages;
python = python3;
wxPython = python3Packages.wxPython_4_0;
in
stdenv.mkDerivation rec {
passthru.libraries = callPackages ./libraries.nix versionConfig.libVersion;
2020-01-12 16:45:35 +01:00
base = callPackage ./base.nix {
inherit versions stable baseName;
inherit wxGTK python wxPython;
inherit debug withI18n withOCCT oceSupport ngspiceSupport scriptingSupport;
2019-12-15 04:30:15 +01:00
};
inherit pname;
version = versions.${baseName}.kicadVersion.version;
2019-11-05 04:15:14 +01:00
2020-01-12 16:45:35 +01:00
src = base;
dontUnpack = true;
dontConfigure = true;
dontBuild = true;
dontFixup = true;
2018-07-31 15:37:59 +02:00
2019-12-15 04:30:15 +01:00
pythonPath = optionals (scriptingSupport)
[ wxPython pythonPackages.six ];
2018-07-31 15:37:59 +02:00
2019-12-15 04:30:15 +01:00
nativeBuildInputs = optionals (scriptingSupport)
[ pythonPackages.wrapPython ];
2020-01-12 16:45:35 +01:00
# wrapGAppsHook added the equivalent to ${base}/share
2019-12-15 04:30:15 +01:00
# though i noticed no difference without it
makeWrapperArgs = with passthru.libraries; [
2020-01-12 16:45:35 +01:00
"--prefix XDG_DATA_DIRS : ${base}/share"
2019-11-05 04:15:14 +01:00
"--prefix XDG_DATA_DIRS : ${hicolor-icon-theme}/share"
"--prefix XDG_DATA_DIRS : ${gnome3.defaultIconTheme}/share"
"--prefix XDG_DATA_DIRS : ${wxGTK.gtk}/share/gsettings-schemas/${wxGTK.gtk.name}"
"--prefix XDG_DATA_DIRS : ${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}"
# wrapGAppsHook did these two as well, no idea if it matters...
2019-11-05 04:15:14 +01:00
"--prefix XDG_DATA_DIRS : ${cups}/share"
"--prefix GIO_EXTRA_MODULES : ${gnome3.dconf}/lib/gio/modules"
"--set KISYSMOD ${footprints}/share/kicad/modules"
"--set KICAD_SYMBOL_DIR ${symbols}/share/kicad/library"
"--set KICAD_TEMPLATE_DIR ${templates}/share/kicad/template"
"--prefix KICAD_TEMPLATE_DIR : ${symbols}/share/kicad/template"
"--prefix KICAD_TEMPLATE_DIR : ${footprints}/share/kicad/template"
2019-11-05 04:15:14 +01:00
]
++ optionals (with3d) [ "--set KISYS3DMOD ${packages3d}/share/kicad/modules/packages3d" ]
++ optionals (ngspiceSupport) [ "--prefix LD_LIBRARY_PATH : ${libngspice}/lib" ]
2019-11-05 04:15:14 +01:00
# infinisil's workaround for #39493
++ [ "--set GDK_PIXBUF_MODULE_FILE ${librsvg}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache" ]
;
2018-07-31 15:37:59 +02:00
2019-12-15 04:30:15 +01:00
# dunno why i have to add $makeWrapperArgs manually...
# $out and $program_PYTHONPATH don't exist when makeWrapperArgs gets set?
2020-01-12 16:45:35 +01:00
# not sure if anything has to be done with the other stuff in base/bin
2019-12-15 04:30:15 +01:00
# dxf2idf, idf2vrml, idfcyl, idfrect, kicad2step, kicad-ogltest
installPhase =
2020-01-12 16:45:35 +01:00
optionalString (scriptingSupport) '' buildPythonPath "${base} $pythonPath"
2019-11-05 04:15:14 +01:00
'' +
2020-01-12 16:45:35 +01:00
'' makeWrapper ${base}/bin/kicad $out/bin/kicad $makeWrapperArgs ''
2019-11-05 04:15:14 +01:00
+ optionalString (scriptingSupport) '' --set PYTHONPATH "$program_PYTHONPATH"
'' +
2020-01-12 16:45:35 +01:00
'' makeWrapper ${base}/bin/pcbnew $out/bin/pcbnew $makeWrapperArgs ''
2019-11-05 04:15:14 +01:00
+ optionalString (scriptingSupport) '' --set PYTHONPATH "$program_PYTHONPATH"
'' +
2020-01-12 16:45:35 +01:00
'' makeWrapper ${base}/bin/eeschema $out/bin/eeschema $makeWrapperArgs ''
2019-11-05 04:15:14 +01:00
+ optionalString (scriptingSupport) '' --set PYTHONPATH "$program_PYTHONPATH"
'' +
2020-01-12 16:45:35 +01:00
'' makeWrapper ${base}/bin/gerbview $out/bin/gerbview $makeWrapperArgs ''
2019-11-05 04:15:14 +01:00
+ optionalString (scriptingSupport) '' --set PYTHONPATH "$program_PYTHONPATH"
'' +
2020-01-12 16:45:35 +01:00
'' makeWrapper ${base}/bin/pcb_calculator $out/bin/pcb_calculator $makeWrapperArgs ''
2019-11-05 04:15:14 +01:00
+ optionalString (scriptingSupport) '' --set PYTHONPATH "$program_PYTHONPATH"
'' +
2020-01-12 16:45:35 +01:00
'' makeWrapper ${base}/bin/pl_editor $out/bin/pl_editor $makeWrapperArgs ''
2019-11-05 04:15:14 +01:00
+ optionalString (scriptingSupport) '' --set PYTHONPATH "$program_PYTHONPATH"
'' +
2020-01-12 16:45:35 +01:00
'' makeWrapper ${base}/bin/bitmap2component $out/bin/bitmap2component $makeWrapperArgs ''
2019-11-05 04:15:14 +01:00
+ optionalString (scriptingSupport) '' --set PYTHONPATH "$program_PYTHONPATH"
''
;
2016-03-31 04:26:54 +02:00
# can't run this for each pname
# stable and unstable are in the same versions.nix
# and kicad-small reuses stable
# with "all" it updates both, run it manually if you don't want that
# and can't git commit if this could be running in parallel with other scripts
passthru.updateScript = [ ./update.sh "all" ];
meta = {
2019-12-15 04:30:15 +01:00
description = if (stable)
then "Open Source Electronics Design Automation Suite"
else "Open Source EDA Suite, Development Build";
homepage = "https://www.kicad-pcb.org/";
longDescription = ''
KiCad is an open source software suite for Electronic Design Automation.
The Programs handle Schematic Capture, and PCB Layout with Gerber output.
'';
license = licenses.agpl3;
2019-12-15 04:30:15 +01:00
# berce seems inactive...
2019-11-05 04:15:14 +01:00
maintainers = with maintainers; [ evils kiwi berce ];
2019-12-15 04:30:15 +01:00
# kicad's cross-platform, not sure what to fill in here
2018-07-26 14:47:07 +02:00
platforms = with platforms; linux;
} // optionalAttrs with3d {
# We can't download the 3d models on Hydra - they are a ~1 GiB download and
# they occupy ~5 GiB in store.
hydraPlatforms = [];
};
}