Merge pull request #11075 from mogorman/pcb

pcb: new package

+25
+23
pkgs/applications/science/electronics/pcb/default.nix
··· 1 + { stdenv, fetchurl, pkgconfig, gtk, bison, intltool, flex, netpbm, imagemagick, dbus, xlibsWrapper, mesa, shared_mime_info, tcl, tk, gnome, pangox_compat, gd, xorg }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "pcb-${version}"; 5 + version = "20140316"; 6 + 7 + src = fetchurl { 8 + url = "http://ftp.geda-project.org/pcb/pcb-20140316/${name}.tar.gz"; 9 + sha256 = "0l6944hq79qsyp60i5ai02xwyp8l47q7xdm3js0jfkpf72ag7i42"; 10 + }; 11 + 12 + buildInputs = [ pkgconfig gtk bison intltool flex netpbm imagemagick dbus xlibsWrapper mesa tcl shared_mime_info tk gnome.gtkglext pangox_compat gd xorg.libXmu ]; 13 + 14 + configureFlags = ["--disable-update-desktop-database"]; 15 + 16 + meta = with stdenv.lib; { 17 + description = "Printed Circuit Board editor"; 18 + homepage = http://pcb.geda-project.org/; 19 + maintainers = with maintainers; [ mog ]; 20 + platforms = platforms.linux; 21 + license = licenses.gpl2; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 15118 15118 15119 15119 ngspice = callPackage ../applications/science/electronics/ngspice { }; 15120 15120 15121 + pcb = callPackage ../applications/science/electronics/pcb { }; 15122 + 15121 15123 qucs = callPackage ../applications/science/electronics/qucs { }; 15122 15124 15123 15125 xoscope = callPackage ../applications/science/electronics/xoscope { };