kicad: 2013 stable -> 4.0.2

This commit is contained in:
ne0phyte 2016-03-31 04:26:54 +02:00
parent ca983ec20c
commit cce37d2164
2 changed files with 47 additions and 20 deletions

View file

@ -1,21 +1,39 @@
{ stdenv, fetchurl, fetchbzr, cmake, mesa, wxGTK, zlib, libX11, gettext }: { stdenv, fetchurl, fetchbzr, cmake, mesa, wxGTK, zlib, libX11, gettext, glew, cairo, openssl, boost, pkgconfig, doxygen }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "kicad-20131025"; name = "kicad-${series}";
series = "4.0";
version = "4.0.2";
src = fetchbzr { srcs = [
url = "https://code.launchpad.net/kicad/stable"; (fetchurl {
rev = 4024; url = "https://code.launchpad.net/kicad/${series}/${version}/+download/kicad-${version}.tar.xz";
sha256 = "1sv1l2zpbn6439ccz50p05hvqg6j551aqra551wck9h3929ghly5"; sha256 = "1fcf91fmxj6ha3mm6gzdb0px50j58m80p8wrncm8ca9shj36kbif";
}; })
srcLibrary = fetchbzr { (fetchurl {
url = "http://bazaar.launchpad.net/~kicad-product-committers/kicad/library"; url = "http://downloads.kicad-pcb.org/libraries/kicad-library-${version}.tar.gz";
rev = 293; sha256 = "1xk9sxxb3d42chdysqmvizrjcbm0467q7nsq5cahq3j1hci49m6l";
sha256 = "1wn9a4nhqyjzzfkq6xm7ag8n5n10xy7gkq6i7yry7wxini7pzv1i"; })
};
cmakeFlags = "-DKICAD_STABLE_VERSION=ON"; (fetchurl {
url = "http://downloads.kicad-pcb.org/libraries/kicad-footprints-${version}.tar.gz";
sha256 = "0vrzykgxx423iwgz6186bi8724kmbi5wfl92gfwb3r6mqammgwpg";
})
];
sourceRoot = "kicad-${version}";
cmakeFlags = ''
-DCMAKE_BUILD_TYPE=Release
-DKICAD_SKIP_BOOST=ON
-DKICAD_BUILD_VERSION=${version}
-DKICAD_REPO_NAME=stable
'';
enableParallelBuilding = true; # often fails on Hydra: fatal error: pcb_plot_params_lexer.h: No such file or directory
buildInputs = [ cmake mesa wxGTK zlib libX11 gettext glew cairo openssl boost pkgconfig doxygen ];
# They say they only support installs to /usr or /usr/local, # They say they only support installs to /usr or /usr/local,
# so we have to handle this. # so we have to handle this.
@ -23,17 +41,26 @@ stdenv.mkDerivation rec {
sed -i -e 's,/usr/local/kicad,'$out,g common/gestfich.cpp sed -i -e 's,/usr/local/kicad,'$out,g common/gestfich.cpp
''; '';
#enableParallelBuilding = true; # often fails on Hydra: fatal error: pcb_plot_params_lexer.h: No such file or directory postUnpack = ''
pushd $(pwd)
buildInputs = [ cmake mesa wxGTK zlib libX11 gettext ]; '';
postInstall = '' postInstall = ''
mkdir library popd
cd library
cmake -DCMAKE_INSTALL_PREFIX=$out $srcLibrary pushd kicad-library-*
cmake -DCMAKE_INSTALL_PREFIX=$out
make $MAKE_FLAGS
make install make install
popd
pushd kicad-footprints-*
mkdir -p $out/share/kicad/modules
cp -R *.pretty $out/share/kicad/modules/
popd
''; '';
meta = { meta = {
description = "Free Software EDA Suite"; description = "Free Software EDA Suite";
homepage = "http://www.kicad-pcb.org/"; homepage = "http://www.kicad-pcb.org/";

View file

@ -15730,7 +15730,7 @@ in
gtkwave = callPackage ../applications/science/electronics/gtkwave { }; gtkwave = callPackage ../applications/science/electronics/gtkwave { };
kicad = callPackage ../applications/science/electronics/kicad { kicad = callPackage ../applications/science/electronics/kicad {
wxGTK = wxGTK29; wxGTK = wxGTK30;
}; };
ngspice = callPackage ../applications/science/electronics/ngspice { }; ngspice = callPackage ../applications/science/electronics/ngspice { };