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.
37 lines
982 B
Nix
37 lines
982 B
Nix
{ lib, stdenv, fetchurl, pkg-config
|
|
, libX11, libXmu, libXpm, gtk2, libpng, libjpeg, libtiff, librsvg, gdk-pixbuf, gdk-pixbuf-xlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fbpanel";
|
|
version = "6.1";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/fbpanel/${pname}-${version}.tbz2";
|
|
sha256 = "e14542cc81ea06e64dd4708546f5fd3f5e01884c3e4617885c7ef22af8cf3965";
|
|
};
|
|
buildInputs =
|
|
[ pkg-config libX11 libXmu libXpm gtk2 libpng libjpeg libtiff librsvg gdk-pixbuf gdk-pixbuf-xlib.dev ];
|
|
|
|
preConfigure = "patchShebangs .";
|
|
|
|
postConfigure = ''
|
|
substituteInPlace config.mk \
|
|
--replace "CFLAGSX =" "CFLAGSX = -I${gdk-pixbuf-xlib.dev}/include/gdk-pixbuf-2.0"
|
|
'';
|
|
|
|
NIX_LDFLAGS="-lX11";
|
|
|
|
meta = with lib; {
|
|
description = "A stand-alone panel";
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.linux;
|
|
license = licenses.mit;
|
|
};
|
|
|
|
passthru = {
|
|
updateInfo = {
|
|
downloadPage = "fbpanel.sourceforge.net";
|
|
};
|
|
};
|
|
}
|