depot/third_party/nixpkgs/pkgs/applications/science/physics/xnec2c/default.nix
Default email 2c76a4cb41 Project import generated by Copybara.
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
2023-11-16 04:20:00 +00:00

42 lines
842 B
Nix

{ lib
, stdenv
, fetchurl
, autoreconfHook
, wrapGAppsHook
, pkg-config
, which
, gtk3
, blas
, lapack
}:
assert (!blas.isILP64) && (!lapack.isILP64);
stdenv.mkDerivation rec {
pname = "xnec2c";
version = "4.4.12";
src = fetchurl {
url = "https://www.xnec2c.org/releases/${pname}-v${version}.tar.gz";
hash = "sha256-6Yrx6LkJjfnMA/kJUDWLhGzGopZeecARSrcR++UScsU=";
};
nativeBuildInputs = [
autoreconfHook
wrapGAppsHook
pkg-config
which
];
buildInputs = [ gtk3 blas lapack ];
meta = with lib; {
homepage = "https://www.xnec2c.org/";
description = "Graphical antenna simulation";
license = licenses.gpl3;
maintainers = with maintainers; [ mvs ];
platforms = platforms.unix;
# Darwin support likely to be fixed upstream in the next release
broken = stdenv.isDarwin;
};
}