summary refs log tree commit diff
path: root/pkgs/applications/science/electronics/geda/default.nix
blob: 03ddf835343d5c8c4baf689991b959a25b281a69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, pkgconfig, guile, gtk, flex, gawk }:

stdenv.mkDerivation rec {
  name = "geda-${version}";
  version = "1.8.2-20130925";

  src = fetchurl {
    url = "http://ftp.geda-project.org/geda-gaf/stable/v1.8/1.8.2/geda-gaf-1.8.2.tar.gz";
    sha256 = "08dpa506xk4gjbbi8vnxcb640wq4ihlgmhzlssl52nhvxwx7gx5v";
  };

  configureFlags = "--disable-update-xdg-database";
  buildInputs = [ pkgconfig guile gtk flex gawk ];

  meta = with stdenv.lib; {
    description = "Full GPL'd suite of Electronic Design Automation tools";
    homepage = http://www.geda-project.org/;
    maintainers = with maintainers; [ pjones ];
    platforms = platforms.linux;
    license = licenses.gpl2;
  };
}