2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, guile, gtk2, flex, gawk, perl }:
|
2015-08-31 22:09:58 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "geda";
|
2015-08-31 22:09:58 +01:00
|
|
|
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";
|
|
|
|
};
|
|
|
|
|
2018-07-25 22:44:21 +01:00
|
|
|
configureFlags = [
|
2021-01-21 00:55:55 +00:00
|
|
|
"--disable-update-xdg-database"
|
2018-07-25 22:44:21 +01:00
|
|
|
];
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 22:26:13 +01:00
|
|
|
buildInputs = [ guile gtk2 flex gawk perl ];
|
2015-08-31 22:09:58 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-08-31 22:09:58 +01:00
|
|
|
description = "Full GPL'd suite of Electronic Design Automation tools";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.geda-project.org/";
|
2015-08-31 22:09:58 +01:00
|
|
|
maintainers = with maintainers; [ pjones ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
}
|