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.
34 lines
743 B
Nix
34 lines
743 B
Nix
{ stdenv, fetchurl
|
|
, glib
|
|
, gtk3
|
|
, libffcall
|
|
, pkg-config
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gtk-server";
|
|
version = "2.4.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.gtk-server.org/stable/gtk-server-${version}.tar.gz";
|
|
sha256 = "0vlx5ibvc7hyc8yipjgvrx1azvmh42i9fv1khg3dvn09nrdkrc7f";
|
|
};
|
|
|
|
preConfigure = ''
|
|
cd src
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkg-config wrapGAppsHook ];
|
|
buildInputs = [ libffcall glib gtk3 ];
|
|
|
|
configureOptions = [ "--with-gtk3" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "gtk-server for interpreted GUI programming";
|
|
homepage = "http://www.gtk-server.org/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.tohl ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|