Skip to content

Commit f3f38ec

Browse files
tokudanFRidh
authored andcommittedMay 4, 2017
kicad: update to 4.0.6
1 parent 5db271c commit f3f38ec

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
 

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
{ stdenv, fetchurl, fetchbzr, cmake, mesa, wxGTK, zlib, libX11, gettext, glew, cairo, openssl, boost, pkgconfig, doxygen }:
1+
{ stdenv, fetchurl, fetchbzr, cmake, mesa, wxGTK, zlib, libX11, gettext, glew, cairo, curl, openssl, boost, pkgconfig, doxygen }:
22

33
stdenv.mkDerivation rec {
44
name = "kicad-${series}";
55
series = "4.0";
6-
version = "4.0.2";
6+
version = "4.0.6";
77

88
srcs = [
99
(fetchurl {
1010
url = "https://code.launchpad.net/kicad/${series}/${version}/+download/kicad-${version}.tar.xz";
11-
sha256 = "1fcf91fmxj6ha3mm6gzdb0px50j58m80p8wrncm8ca9shj36kbif";
11+
sha256 = "1612lkr1p5sii2c4q8zdm6m4kmdylcq8hkd1mzr6b7l3g70sqz79";
1212
})
1313

1414
(fetchurl {
1515
url = "http://downloads.kicad-pcb.org/libraries/kicad-library-${version}.tar.gz";
16-
sha256 = "1xk9sxxb3d42chdysqmvizrjcbm0467q7nsq5cahq3j1hci49m6l";
16+
sha256 = "16f47pd6f0ddsdxdrp327nr9v05gl8c24d0qypq2aqx5hdjmkp7f";
1717
})
1818

1919
(fetchurl {
2020
url = "http://downloads.kicad-pcb.org/libraries/kicad-footprints-${version}.tar.gz";
21-
sha256 = "0vrzykgxx423iwgz6186bi8724kmbi5wfl92gfwb3r6mqammgwpg";
21+
sha256 = "0vmgqhdw05k5fdnqv42grnvlz7v75g9md82jp2d3dvw2zw050lfb";
2222
})
2323
];
2424

@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
3232

3333
enableParallelBuilding = true; # often fails on Hydra: fatal error: pcb_plot_params_lexer.h: No such file or directory
3434

35-
buildInputs = [ cmake mesa wxGTK zlib libX11 gettext glew cairo openssl boost pkgconfig doxygen ];
35+
buildInputs = [ cmake mesa wxGTK zlib libX11 gettext glew cairo curl openssl boost pkgconfig doxygen ];
3636

3737
# They say they only support installs to /usr or /usr/local,
3838
# so we have to handle this.

0 commit comments

Comments
 (0)
Please sign in to comment.