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
971 B
Nix
37 lines
971 B
Nix
{ stdenv, fetchurl, dbus-glib, glib, python2, pkg-config, libxslt
|
|
, gobject-introspection, vala, glibcLocales }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "telepathy-glib-0.24.1";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/releases/telepathy-glib/${name}.tar.gz";
|
|
sha256 = "1symyzbjmxvksn2ifdkk50lafjm2llf2sbmky062gq2pz3cg23cy";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--enable-vala-bindings"
|
|
];
|
|
LC_ALL = "en_US.UTF-8";
|
|
propagatedBuildInputs = [ dbus-glib glib ];
|
|
|
|
nativeBuildInputs = [ pkg-config libxslt gobject-introspection vala ];
|
|
buildInputs = [ glibcLocales python2 ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
preConfigure = ''
|
|
substituteInPlace telepathy-glib/telepathy-glib.pc.in --replace Requires.private Requires
|
|
'';
|
|
|
|
passthru.python = python2;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://telepathy.freedesktop.org";
|
|
platforms = platforms.unix;
|
|
license = with licenses; [ bsd2 bsd3 lgpl21Plus ];
|
|
};
|
|
}
|