571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, flex
|
|
, bison
|
|
, fftw
|
|
, withNgshared ? true
|
|
, libXaw
|
|
, libXext
|
|
, llvmPackages
|
|
, readline
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "${lib.optionalString withNgshared "lib"}ngspice";
|
|
version = "43";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/ngspice/ngspice-${version}.tar.gz";
|
|
hash = "sha256-FN1qbwhTHyBRwTrmN5CkVwi9Q/PneIamqEiYwpexNpk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
flex
|
|
bison
|
|
];
|
|
|
|
buildInputs = [
|
|
fftw
|
|
readline
|
|
] ++ lib.optionals (!withNgshared) [
|
|
libXaw
|
|
libXext
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
llvmPackages.openmp
|
|
];
|
|
|
|
configureFlags = lib.optionals withNgshared [
|
|
"--with-ngshared"
|
|
] ++ [
|
|
"--enable-xspice"
|
|
"--enable-cider"
|
|
"--enable-osdi"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Next Generation Spice (Electronic Circuit Simulator)";
|
|
mainProgram = "ngspice";
|
|
homepage = "http://ngspice.sourceforge.net";
|
|
license = with licenses; [ bsd3 gpl2Plus lgpl2Plus ]; # See https://sourceforge.net/p/ngspice/ngspice/ci/master/tree/COPYING
|
|
maintainers = with maintainers; [ bgamari ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|