nixpkgs/pkgs/applications/science/electronics/geda/default.nix
2015-12-14 00:04:12 -05:00

23 lines
708 B
Nix

{ stdenv, fetchurl, pkgconfig, guile, gtk, flex, gawk, perl }:
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 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;
};
}