lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 25 lines 735 B view raw
1{ lib, stdenv, fetchurl, pkg-config, guile, gtk2, flex, gawk, perl }: 2 3stdenv.mkDerivation { 4 pname = "geda"; 5 version = "1.8.2-20130925"; 6 7 src = fetchurl { 8 url = "http://ftp.geda-project.org/geda-gaf/stable/v1.8/1.8.2/geda-gaf-1.8.2.tar.gz"; 9 sha256 = "08dpa506xk4gjbbi8vnxcb640wq4ihlgmhzlssl52nhvxwx7gx5v"; 10 }; 11 12 configureFlags = [ 13 "--disable-update-xdg-database" 14 ]; 15 nativeBuildInputs = [ pkg-config ]; 16 buildInputs = [ guile gtk2 flex gawk perl ]; 17 18 meta = with lib; { 19 description = "Full GPL'd suite of Electronic Design Automation tools"; 20 homepage = "http://www.geda-project.org/"; 21 maintainers = with maintainers; [ pjones ]; 22 platforms = platforms.linux; 23 license = licenses.gpl2; 24 }; 25}