33 lines
919 B
Nix
33 lines
919 B
Nix
{ stdenv, fetchurl, python, pkgconfig, popt, intltool, dbus_glib
|
|
, libX11, xextproto, libSM, libICE, libXtst, libXi, gobjectIntrospection }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
versionMajor = "2.16";
|
|
versionMinor = "0";
|
|
moduleName = "at-spi2-core";
|
|
name = "${moduleName}-${versionMajor}.${versionMinor}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${moduleName}/${versionMajor}/${name}.tar.xz";
|
|
sha256 = "1l3l39mw23zyjlcqidvkyqlr4gwbhplzw2hcv3qvn6p8ikxpf2qw";
|
|
};
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
buildInputs = [
|
|
python pkgconfig popt intltool dbus_glib
|
|
libX11 xextproto libSM libICE libXtst libXi
|
|
gobjectIntrospection
|
|
];
|
|
|
|
# ToDo: on non-NixOS we create a symlink from there?
|
|
configureFlags = "--with-dbus-daemondir=/run/current-system/sw/bin/";
|
|
|
|
NIX_LDFLAGS = with stdenv; lib.optionalString isDarwin "-lintl";
|
|
|
|
meta = with stdenv.lib; {
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|
|
|