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.
44 lines
885 B
Nix
44 lines
885 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, autoreconfHook
|
|
, wrapGAppsHook3
|
|
, pkg-config
|
|
, which
|
|
, gtk3
|
|
, blas
|
|
, lapack
|
|
}:
|
|
|
|
assert (!blas.isILP64) && (!lapack.isILP64);
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xnec2c";
|
|
version = "4.4.16";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.xnec2c.org/releases/${pname}-v${version}.tar.gz";
|
|
hash = "sha256-XiZi8pfmfHjGpePkRy/pF1TA+5RdxX4AGuKzG5Wqrmk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
wrapGAppsHook3
|
|
pkg-config
|
|
which
|
|
];
|
|
buildInputs = [ gtk3 blas lapack ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.xnec2c.org/";
|
|
description = "Graphical antenna simulation";
|
|
mainProgram = "xnec2c";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ mvs ];
|
|
platforms = platforms.unix;
|
|
|
|
# Darwin support likely to be fixed upstream in the next release
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
};
|
|
}
|