lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 23 lines 879 B view raw
1{ stdenv, fetchurl, pkgconfig, gtk2, bison, intltool, flex, netpbm, imagemagick, dbus, xlibsWrapper, mesa, shared_mime_info, tcl, tk, gnome2, pangox_compat, gd, xorg }: 2 3stdenv.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 gtk2 bison intltool flex netpbm imagemagick dbus xlibsWrapper mesa tcl shared_mime_info tk gnome2.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}