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.
22 lines
674 B
Nix
22 lines
674 B
Nix
{ lib, stdenv, fetchurl, pkg-config, glib, libsigrok, libsigrokdecode }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "sigrok-cli-0.7.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://sigrok.org/download/source/sigrok-cli/${name}.tar.gz";
|
|
sha256 = "15vpn1psriadcbl6v9swwgws7dva85ld03yv6g1mgm27kx11697m";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ glib libsigrok libsigrokdecode ];
|
|
|
|
meta = with lib; {
|
|
description = "Command-line frontend for the sigrok signal analysis software suite";
|
|
homepage = "https://sigrok.org/";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|