nixpkgs/pkgs/applications/science/electronics/geda/default.nix

26 lines
735 B
Nix
Raw Normal View History

{ 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 {
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 = [
"--disable-update-xdg-database"
2018-07-25 22:44:21 +01:00
];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ guile gtk2 flex gawk perl ];
2015-08-31 22:09:58 +01:00
meta = with lib; {
2015-08-31 22:09:58 +01:00
description = "Full GPL'd suite of Electronic Design Automation tools";
homepage = "http://www.geda-project.org/";
2015-08-31 22:09:58 +01:00
maintainers = with maintainers; [ pjones ];
platforms = platforms.linux;
license = licenses.gpl2;
};
}