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

71 lines
1.9 KiB
Nix
Raw Normal View History

2017-05-02 23:59:27 +00:00
{ stdenv, fetchurl, fetchbzr, cmake, mesa, wxGTK, zlib, libX11, gettext, glew, cairo, curl, openssl, boost, pkgconfig, doxygen }:
stdenv.mkDerivation rec {
2016-03-31 02:26:54 +00:00
name = "kicad-${series}";
series = "4.0";
2017-05-02 23:59:27 +00:00
version = "4.0.6";
2016-03-31 02:26:54 +00:00
srcs = [
(fetchurl {
url = "https://code.launchpad.net/kicad/${series}/${version}/+download/kicad-${version}.tar.xz";
2017-05-02 23:59:27 +00:00
sha256 = "1612lkr1p5sii2c4q8zdm6m4kmdylcq8hkd1mzr6b7l3g70sqz79";
2016-03-31 02:26:54 +00:00
})
2016-03-31 02:26:54 +00:00
(fetchurl {
url = "http://downloads.kicad-pcb.org/libraries/kicad-library-${version}.tar.gz";
2017-05-02 23:59:27 +00:00
sha256 = "16f47pd6f0ddsdxdrp327nr9v05gl8c24d0qypq2aqx5hdjmkp7f";
2016-03-31 02:26:54 +00:00
})
(fetchurl {
url = "http://downloads.kicad-pcb.org/libraries/kicad-footprints-${version}.tar.gz";
2017-05-02 23:59:27 +00:00
sha256 = "0vmgqhdw05k5fdnqv42grnvlz7v75g9md82jp2d3dvw2zw050lfb";
2016-03-31 02:26:54 +00:00
})
];
2016-03-31 02:26:54 +00:00
sourceRoot = "kicad-${version}";
cmakeFlags = ''
-DKICAD_SKIP_BOOST=ON
-DKICAD_BUILD_VERSION=${version}
-DKICAD_REPO_NAME=stable
'';
2016-03-31 02:26:54 +00:00
enableParallelBuilding = true; # often fails on Hydra: fatal error: pcb_plot_params_lexer.h: No such file or directory
2017-05-02 23:59:27 +00:00
buildInputs = [ cmake mesa wxGTK zlib libX11 gettext glew cairo curl openssl boost pkgconfig doxygen ];
# They say they only support installs to /usr or /usr/local,
# so we have to handle this.
patchPhase = ''
sed -i -e 's,/usr/local/kicad,'$out,g common/gestfich.cpp
'';
2016-03-31 02:26:54 +00:00
postUnpack = ''
pushd $(pwd)
'';
postInstall = ''
2016-03-31 02:26:54 +00:00
popd
pushd kicad-library-*
cmake -DCMAKE_INSTALL_PREFIX=$out
make $MAKE_FLAGS
make install
2016-03-31 02:26:54 +00:00
popd
2016-03-31 02:26:54 +00:00
pushd kicad-footprints-*
mkdir -p $out/share/kicad/modules
cp -R *.pretty $out/share/kicad/modules/
popd
'';
2016-03-31 02:26:54 +00:00
meta = {
description = "Free Software EDA Suite";
homepage = http://www.kicad-pcb.org/;
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}