forked from mirrors/nixpkgs
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
54 lines
953 B
Nix
54 lines
953 B
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, bison
|
|
, flex
|
|
, gengetopt
|
|
, help2man
|
|
, groff
|
|
, libharu
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, libpng
|
|
, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "hyp2mat";
|
|
version = "0.0.18";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "koendv";
|
|
repo = "hyp2mat";
|
|
rev = "v${version}";
|
|
sha256 = "03ibk51swxfl7pfrhcrfiffdi4mnf8kla0g1xj1lsrvrjwapfx03";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libharu
|
|
libpng
|
|
zlib
|
|
bison
|
|
flex
|
|
gengetopt
|
|
help2man
|
|
groff
|
|
];
|
|
|
|
configureFlags = [ "--enable-library" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Import Hyperlynx Boardsim files to openEMS, an open source 3D full-wave electromagnetic field solver";
|
|
homepage = "https://github.com/koendv/hyp2mat";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ matthuszagh ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|