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