lol
1{stdenv, fetchurl, flex, bison, qt4, libX11 }:
2
3stdenv.mkDerivation rec {
4 name = "qucs-0.0.18";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/qucs/${name}.tar.gz";
8 sha256 = "3609a18b57485dc9f19886ac6694667f3251702175bd1cbbbea37981b2c482a7";
9 };
10
11 QTDIR=qt4;
12
13 buildInputs = [ flex bison qt4 libX11 ];
14
15 meta = {
16 description = "Integrated circuit simulator";
17 homepage = http://qucs.sourceforge.net;
18 license = stdenv.lib.licenses.gpl2Plus;
19 maintainers = with stdenv.lib.maintainers; [viric];
20 platforms = with stdenv.lib.platforms; linux;
21 };
22}