summary refs log tree commit diff
path: root/pkgs/applications/science/electronics/qucs/default.nix
blob: 6d89d9e52715b45b18874da48bf2020391c34dbf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{stdenv, fetchurl, flex, bison, qt4, libX11 }:

stdenv.mkDerivation rec {
  name = "qucs-0.0.18";

  src = fetchurl {
    url = "mirror://sourceforge/qucs/${name}.tar.gz";
    sha256 = "3609a18b57485dc9f19886ac6694667f3251702175bd1cbbbea37981b2c482a7";
  };

  QTDIR=qt4;

  buildInputs = [ flex bison qt4 libX11 ];

  meta = {
    description = "Integrated circuit simulator";
    homepage = http://qucs.sourceforge.net;
    license = stdenv.lib.licenses.gpl2Plus;
    maintainers = with stdenv.lib.maintainers; [viric];
    platforms = with stdenv.lib.platforms; linux;
  };
}