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 {
|
2014-11-14 23:29:45 +01:00
|
|
|
versionMajor = "2.12";
|
2014-03-27 20:53:50 +01:00
|
|
|
versionMinor = "0";
|
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";
|
2014-11-14 23:29:45 +01:00
|
|
|
sha256 = "12gvsgdaxnxskndlhlmdkc50cfqgmzfc4n8la9944fz5k3fhwmfv";
|
2012-07-10 18:03:13 +02:00
|
|
|
};
|
|
|
|
|
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; {
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2012-07-10 18:03:13 +02:00
|
|
|
}
|
2013-12-10 21:52:50 +01:00
|
|
|
|