at-spi2-core: maintainers, license, clean-up
This commit is contained in:
parent
abdeca4902
commit
f70ef8f411
@ -1,29 +1,38 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, gettext, meson, ninja
|
{ stdenv
|
||||||
, python, popt, dbus-glib
|
, fetchurl
|
||||||
, libX11, xextproto, libSM, libICE, libXtst, libXi, gobjectIntrospection }:
|
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkgconfig
|
||||||
|
, gobjectIntrospection
|
||||||
|
|
||||||
|
, dbus
|
||||||
|
, glib
|
||||||
|
, libX11
|
||||||
|
, libXtst # at-spi2-core can be build with custom option not to support X, but due to it is a aplication client-side library, GUI-less usage is a very rare case
|
||||||
|
, libXi
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
versionMajor = "2.28";
|
name = "${moduleName}-${version}";
|
||||||
versionMinor = "0";
|
|
||||||
moduleName = "at-spi2-core";
|
moduleName = "at-spi2-core";
|
||||||
name = "${moduleName}-${versionMajor}.${versionMinor}";
|
version = "2.28.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/${moduleName}/${versionMajor}/${name}.tar.xz";
|
url = "mirror://gnome/sources/${moduleName}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
||||||
sha256 = "11qwdxxx4jm0zj04xydlwah41axiz276dckkiql3rr0wn5x4i8j2";
|
sha256 = "11qwdxxx4jm0zj04xydlwah41axiz276dckkiql3rr0wn5x4i8j2";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ meson ninja pkgconfig gettext gobjectIntrospection ];
|
nativeBuildInputs = [ meson ninja pkgconfig gobjectIntrospection ];
|
||||||
buildInputs = [
|
buildInputs = [ dbus glib libX11 libXtst libXi ];
|
||||||
python popt dbus-glib
|
|
||||||
libX11 xextproto libSM libICE libXtst libXi
|
|
||||||
];
|
|
||||||
|
|
||||||
doCheck = false; # needs dbus daemon
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
description = "Assistive Technology Service Provider Interface protocol definitions and daemon for D-Bus";
|
||||||
|
homepage = https://gitlab.gnome.org/GNOME/at-spi2-core;
|
||||||
|
license = licenses.lgpl2Plus; # NOTE: 2018-06-06: Please check the license when upstream sorts-out licensing: https://gitlab.gnome.org/GNOME/at-spi2-core/issues/2
|
||||||
|
maintainers = with maintainers; [ jtojnar gnome3.maintainers ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user