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.
29 lines
685 B
Nix
29 lines
685 B
Nix
{ lib, stdenv, pkg-config, autoreconfHook,
|
|
glib, libzip, libserialport, check, libusb1, libftdi,
|
|
systemd, alsaLib, dsview
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (dsview) version src;
|
|
|
|
pname = "libsigrok4dsl";
|
|
|
|
postUnpack = ''
|
|
export sourceRoot=$sourceRoot/libsigrok4DSL
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
|
|
|
buildInputs = [
|
|
glib libzip libserialport libusb1 libftdi systemd check alsaLib
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A fork of the sigrok library for usage with DSView";
|
|
homepage = "https://www.dreamsourcelab.com/";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bachp ];
|
|
};
|
|
}
|