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.
36 lines
960 B
Nix
36 lines
960 B
Nix
{ fetchurl, stdenv, pkg-config, clutter, gtk3, glib, cogl, gnome3, gdk-pixbuf }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "clutter-gst";
|
|
version = "3.0.27";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "17czmpl92dzi4h3rn5rishk015yi3jwiw29zv8qan94xcmnbssgy";
|
|
};
|
|
|
|
propagatedBuildInputs = [ clutter gtk3 glib cogl gdk-pixbuf ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
postBuild = "rm -rf $out/share/gtk-doc";
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
description = "GStreamer bindings for clutter";
|
|
|
|
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
|
|
};
|
|
}
|