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.
38 lines
992 B
Nix
38 lines
992 B
Nix
{ fetchurl, stdenv, pkg-config, meson, ninja
|
|
, gobject-introspection, clutter, gtk3, gnome3 }:
|
|
|
|
let
|
|
pname = "clutter-gtk";
|
|
version = "1.8.4";
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
|
sha256 = "01ibniy4ich0fgpam53q252idm7f4fn5xg5qvizcfww90gn9652j";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
propagatedBuildInputs = [ clutter gtk3 ];
|
|
nativeBuildInputs = [ meson ninja pkg-config gobject-introspection ];
|
|
|
|
postBuild = "rm -rf $out/share/gtk-doc";
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
description = "Clutter-GTK";
|
|
homepage = "http://www.clutter-project.org/";
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
maintainers = with stdenv.lib.maintainers; [ lethalman ];
|
|
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux; # arbitrary choice
|
|
};
|
|
}
|