mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
commit
330afe9f4e
23
pkgs/applications/science/electronics/pcb/default.nix
Normal file
23
pkgs/applications/science/electronics/pcb/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchurl, pkgconfig, gtk, bison, intltool, flex, netpbm, imagemagick, dbus, xlibsWrapper, mesa, shared_mime_info, tcl, tk, gnome, pangox_compat, gd, xorg }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pcb-${version}";
|
||||
version = "20140316";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://ftp.geda-project.org/pcb/pcb-20140316/${name}.tar.gz";
|
||||
sha256 = "0l6944hq79qsyp60i5ai02xwyp8l47q7xdm3js0jfkpf72ag7i42";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig gtk bison intltool flex netpbm imagemagick dbus xlibsWrapper mesa tcl shared_mime_info tk gnome.gtkglext pangox_compat gd xorg.libXmu ];
|
||||
|
||||
configureFlags = ["--disable-update-desktop-database"];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Printed Circuit Board editor";
|
||||
homepage = http://pcb.geda-project.org/;
|
||||
maintainers = with maintainers; [ mog ];
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
}
|
@ -15118,6 +15118,8 @@ let
|
||||
|
||||
ngspice = callPackage ../applications/science/electronics/ngspice { };
|
||||
|
||||
pcb = callPackage ../applications/science/electronics/pcb { };
|
||||
|
||||
qucs = callPackage ../applications/science/electronics/qucs { };
|
||||
|
||||
xoscope = callPackage ../applications/science/electronics/xoscope { };
|
||||
|
Loading…
Reference in New Issue
Block a user