about summary refs log tree commit diff
path: root/pkgs/development/libraries/at-spi2-core/default.nix
blob: a3b55ef631e53c02a68c4f10bc209b0b22f8c9a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchurl, pkgconfig, gettext, meson, ninja
, python, popt, dbus-glib
, libX11, xextproto, libSM, libICE, libXtst, libXi, gobjectIntrospection }:

stdenv.mkDerivation rec {
  versionMajor = "2.28";
  versionMinor = "0";
  moduleName   = "at-spi2-core";
  name = "${moduleName}-${versionMajor}.${versionMinor}";

  src = fetchurl {
    url = "mirror://gnome/sources/${moduleName}/${versionMajor}/${name}.tar.xz";
    sha256 = "11qwdxxx4jm0zj04xydlwah41axiz276dckkiql3rr0wn5x4i8j2";
  };

  outputs = [ "out" "dev" ];

  nativeBuildInputs = [ meson ninja pkgconfig gettext gobjectIntrospection ];
  buildInputs = [
    python popt dbus-glib
    libX11 xextproto libSM libICE libXtst libXi
  ];

  doCheck = false; # needs dbus daemon

  meta = with stdenv.lib; {
    platforms = platforms.unix;
  };
}