Adding qucs

svn path=/nixpkgs/trunk/; revision=24449
This commit is contained in:
Lluís Batlle i Rossell
2010-10-24 17:00:57 +00:00
parent c7756e473b
commit 227c632d18
2 changed files with 25 additions and 1 deletions
@@ -0,0 +1,20 @@
{stdenv, fetchurl, qt, libX11}:
stdenv.mkDerivation rec {
name = "qucs-0.0.15";
src = fetchurl {
url = "mirror://sourceforge/qucs/${name}.tar.gz";
sha256 = "0ggs2nicj8q270l0rbmzg4jc0d0zdxvfsjh4wgww670ma5855xsp";
};
buildInputs = [ qt 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;
};
}