22 lines
671 B
Nix
22 lines
671 B
Nix
{ stdenv, fetchurl, python, pkgconfig, popt, atk, libX11, libICE, xlibs, libXi
|
|
, intltool, dbus_glib, at_spi2_core, libSM }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
versionMajor = "2.10";
|
|
versionMinor = "2";
|
|
moduleName = "at-spi2-atk";
|
|
name = "${moduleName}-${versionMajor}.${versionMinor}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${moduleName}/${versionMajor}/${name}.tar.xz";
|
|
sha256 = "1xfh89lydl8d18dhnzwvzcsyyybr5q3ik001qgq520l3qh8shj73";
|
|
};
|
|
|
|
buildInputs = [ python pkgconfig popt atk libX11 libICE xlibs.libXtst libXi
|
|
intltool dbus_glib at_spi2_core libSM ];
|
|
|
|
meta = with stdenv.lib; {
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|