summary refs log tree commit diff
path: root/pkgs/applications/science/electronics/pcb
diff options
context:
space:
mode:
authorMatthew O'Gorman <mog@rldn.net>2015-11-16 15:44:25 -0600
committerMatthew O'Gorman <mog@rldn.net>2015-12-16 19:29:17 -0500
commit09aff6c104eba3f68f0a8054834376db505af62e (patch)
tree1cdf7e17633f7ecdd4284202f3d15240f3180f36 /pkgs/applications/science/electronics/pcb
parentca186286d73676c3a80884279d6e4a4e238f9ef4 (diff)
downloadnixpkgs-09aff6c104eba3f68f0a8054834376db505af62e.tar
nixpkgs-09aff6c104eba3f68f0a8054834376db505af62e.tar.gz
nixpkgs-09aff6c104eba3f68f0a8054834376db505af62e.tar.bz2
nixpkgs-09aff6c104eba3f68f0a8054834376db505af62e.tar.lz
nixpkgs-09aff6c104eba3f68f0a8054834376db505af62e.tar.xz
nixpkgs-09aff6c104eba3f68f0a8054834376db505af62e.tar.zst
nixpkgs-09aff6c104eba3f68f0a8054834376db505af62e.zip
pcb: init at 20140316
Diffstat (limited to 'pkgs/applications/science/electronics/pcb')
-rw-r--r--pkgs/applications/science/electronics/pcb/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/science/electronics/pcb/default.nix b/pkgs/applications/science/electronics/pcb/default.nix
new file mode 100644
index 00000000000..257d6993ff5
--- /dev/null
+++ b/pkgs/applications/science/electronics/pcb/default.nix
@@ -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;
+  };
+}