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.
23 lines
677 B
Nix
23 lines
677 B
Nix
{ lib, stdenv, fetchurl, pkg-config, libX11, libXpm, libXext, libXfixes, libXmu }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wmsystemtray";
|
|
version = "1.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/${pname}/${pname}/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-jt70NpHp//BxAA4pFmx8GtQgwJVukGgVEGHogcisl+k=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libX11 libXpm libXext libXfixes libXmu ];
|
|
|
|
meta = with lib; {
|
|
description = "A system tray for Windowmaker";
|
|
homepage = "http://wmsystemtray.sourceforge.net";
|
|
license = licenses.gpl2Only;
|
|
maintainers = [ maintainers.bstrik ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|