2011-09-20 23:49:13 +01:00
|
|
|
{stdenv, fetchurl, qt3, libX11}:
|
2010-10-24 18:00:57 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-02-24 14:11:19 +00:00
|
|
|
name = "qucs-0.0.16";
|
2010-10-24 18:00:57 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/qucs/${name}.tar.gz";
|
2013-02-24 14:11:19 +00:00
|
|
|
sha256 = "1h8ba84k06rix5zl5p9p414zj2facbnlf1vxwh4a1sp4h9dbfnzy";
|
2010-10-24 18:00:57 +01:00
|
|
|
};
|
|
|
|
|
2013-02-24 14:11:19 +00:00
|
|
|
patches = [ ./tr1-complex.patch ];
|
|
|
|
patchFlags = "-p0";
|
|
|
|
|
2011-09-20 23:49:13 +01:00
|
|
|
buildInputs = [ qt3 libX11 ];
|
2010-10-24 18:00:57 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Integrated circuit simulator";
|
|
|
|
homepage = http://qucs.sourceforge.net;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2010-10-24 18:00:57 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|