932941b79c
- remove trailing whitespace - use spaces for indentation
26 lines
735 B
Nix
26 lines
735 B
Nix
{ lib, stdenv, fetchurl, pkg-config, guile, gtk2, flex, gawk, perl }:
|
|
|
|
stdenv.mkDerivation {
|
|
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 = [ pkg-config ];
|
|
buildInputs = [ guile gtk2 flex gawk perl ];
|
|
|
|
meta = with 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;
|
|
};
|
|
}
|