1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/science/electronics/qucs/default.nix

24 lines
588 B
Nix
Raw Normal View History

{stdenv, fetchurl, qt3, libX11}:
stdenv.mkDerivation rec {
2013-02-24 14:11:19 +00:00
name = "qucs-0.0.16";
src = fetchurl {
url = "mirror://sourceforge/qucs/${name}.tar.gz";
2013-02-24 14:11:19 +00:00
sha256 = "1h8ba84k06rix5zl5p9p414zj2facbnlf1vxwh4a1sp4h9dbfnzy";
};
2013-02-24 14:11:19 +00:00
patches = [ ./tr1-complex.patch ];
patchFlags = "-p0";
buildInputs = [ qt3 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;
};
}