From 99a94a777b214ba9dbd2484f8cbaed526724ab1c Mon Sep 17 00:00:00 2001 From: LluĂ­s Batlle i Rossell Date: Mon, 21 Jun 2010 20:34:23 +0000 Subject: Updating ngspice svn path=/nixpkgs/trunk/; revision=22364 --- .../science/electronics/ngspice/default.nix | 25 +++++++++++++--------- 1 file changed, 15 insertions(+), 10 deletions(-) (limited to 'pkgs/applications/science/electronics/ngspice') diff --git a/pkgs/applications/science/electronics/ngspice/default.nix b/pkgs/applications/science/electronics/ngspice/default.nix index c172075f11f8..c7ddceb6b87d 100644 --- a/pkgs/applications/science/electronics/ngspice/default.nix +++ b/pkgs/applications/science/electronics/ngspice/default.nix @@ -1,17 +1,22 @@ -args: -args.stdenv.mkDerivation { - name = "ng-spice-rework-15c"; +{stdenv, fetchurl, readline, bison, libX11, libICE, libXaw, libXext}: - src = args.fetchurl { - url = mirror://sourceforge/ngspice/ng-spice-rework-15c.tar.gz; - sha256 = "0v0pbdc54ra0s98dz6mhj80n333ggbn4xpf53vi66sd02hcjblmg"; +stdenv.mkDerivation { + name = "ng-spice-rework-21"; + + src = fetchurl { + url = mirror://sourceforge/ngspice/ng-spice-rework-21.tar.gz; + sha256 = "1hmvfl33dszy8xgbixx0zmiz4rdzjhl7lwlwm953jibd4dgx42j5"; }; - buildInputs =(with args; [readline]); + buildInputs = [ readline libX11 bison libICE libXaw libXext ]; + + configureFlags = [ "--enable-x" "--with-x" "--with-readline" ]; meta = { - description = "The Next Generation Spice (Electronic Circuit Simulator)."; - homepage = http://ngspice.sourceforge.net; - license = ["BSD" "GPLv2"]; + description = "The Next Generation Spice (Electronic Circuit Simulator)."; + homepage = http://ngspice.sourceforge.net; + license = ["BSD" "GPLv2"]; + maintainers = with stdenv.lib.maintainers; [viric]; + platforms = with stdenv.lib.platforms; linux; }; } -- cgit 1.4.1