nixpkgs/pkgs/applications/science/electronics/ngspice/default.nix
Marc Weber 2d354aa6f1 added ngspice
svn path=/nixpkgs/trunk/; revision=12686
2008-08-21 20:43:53 +00:00

18 lines
454 B
Nix

args:
args.stdenv.mkDerivation {
name = "ng-spice-rework-15c";
src = args.fetchurl {
url = mirror://sourceforge/ngspice/ng-spice-rework-15c.tar.gz;
sha256 = "0v0pbdc54ra0s98dz6mhj80n333ggbn4xpf53vi66sd02hcjblmg";
};
buildInputs =(with args; [readline]);
meta = {
description = "The Next Generation Spice (Electronic Circuit Simulator).";
homepage = http://ngspice.sourceforge.net;
license = ["BSD" "GPLv2"];
};
}