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

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

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

  buildInputs = [ qt3 libX11 ];

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