2013-04-18 09:54:33 +02:00
|
|
|
{ stdenv, fetchurl, python, pkgconfig, popt, intltool, dbus_glib
|
2014-01-26 00:17:49 +01:00
|
|
|
, libX11, xextproto, libSM, libICE, libXtst, libXi, gobjectIntrospection }:
|
2012-07-10 18:03:13 +02:00
|
|
|
|
2014-10-21 20:47:30 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2015-09-23 12:33:46 +02:00
|
|
|
versionMajor = "2.18";
|
2015-12-30 11:46:24 +01:00
|
|
|
versionMinor = "3";
|
2012-07-18 00:29:22 +02:00
|
|
|
moduleName = "at-spi2-core";
|
|
|
|
name = "${moduleName}-${versionMajor}.${versionMinor}";
|
2012-07-10 18:03:13 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-07-18 00:29:22 +02:00
|
|
|
url = "mirror://gnome/sources/${moduleName}/${versionMajor}/${name}.tar.xz";
|
2015-12-30 11:46:24 +01:00
|
|
|
sha256 = "0afn4x04j5l352vj0dccb2hkpzg3l2vhr8h1yv89fpqmjkfnm8md";
|
2012-07-10 18:03:13 +02:00
|
|
|
};
|
|
|
|
|
2015-07-26 13:43:49 +02:00
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
|
2013-04-18 09:54:33 +02:00
|
|
|
buildInputs = [
|
|
|
|
python pkgconfig popt intltool dbus_glib
|
|
|
|
libX11 xextproto libSM libICE libXtst libXi
|
2014-01-26 00:17:49 +01:00
|
|
|
gobjectIntrospection
|
2013-04-18 09:54:33 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
# ToDo: on non-NixOS we create a symlink from there?
|
|
|
|
configureFlags = "--with-dbus-daemondir=/run/current-system/sw/bin/";
|
2014-01-10 01:09:26 +01:00
|
|
|
|
2014-10-21 20:47:30 +02:00
|
|
|
NIX_LDFLAGS = with stdenv; lib.optionalString isDarwin "-lintl";
|
|
|
|
|
2014-01-10 01:09:26 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-03-31 21:23:26 +02:00
|
|
|
platforms = platforms.unix;
|
2014-01-10 01:09:26 +01:00
|
|
|
};
|
2012-07-10 18:03:13 +02:00
|
|
|
}
|
2013-12-10 21:52:50 +01:00
|
|
|
|