23 lines
707 B
Nix
23 lines
707 B
Nix
{ stdenv, fetchurl, python, pkgconfig, popt, atk, libX11, libICE, xorg, libXi
|
|
, intltool, dbus_glib, at_spi2_core, libSM }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
versionMajor = "2.26";
|
|
versionMinor = "0";
|
|
moduleName = "at-spi2-atk";
|
|
name = "${moduleName}-${versionMajor}.${versionMinor}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${moduleName}/${versionMajor}/${name}.tar.xz";
|
|
sha256 = "d25e528e1406a10c7d9b675aa15e638bcbf0a122ca3681f655a30cce83272fb9";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ python popt atk libX11 libICE xorg.libXtst libXi
|
|
intltool dbus_glib at_spi2_core libSM ];
|
|
|
|
meta = with stdenv.lib; {
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|