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.
31 lines
915 B
Nix
31 lines
915 B
Nix
{ mkDerivation, lib, fetchurl, pkg-config, cmake, glib, boost, libsigrok
|
|
, libsigrokdecode, libserialport, libzip, udev, libusb1, libftdi1, glibmm
|
|
, pcre, librevisa, python3, qtbase, qtsvg
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "pulseview";
|
|
version = "0.4.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://sigrok.org/download/source/pulseview/${pname}-${version}.tar.gz";
|
|
sha256 = "0bvgmkgz37n2bi9niskpl05hf7rsj1lj972fbrgnlz25s4ywxrwy";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
buildInputs = [
|
|
glib boost libsigrok libsigrokdecode libserialport libzip udev libusb1 libftdi1 glibmm
|
|
pcre librevisa python3
|
|
qtbase qtsvg
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Qt-based LA/scope/MSO GUI for sigrok (a signal analysis software suite)";
|
|
homepage = "https://sigrok.org/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|