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

stdenv.mkDerivation rec {
  pname = "geda";
  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" 
  ];
  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ guile gtk2 flex gawk perl ];

  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;
  };
}