mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 14:11:36 +00:00
88c9f8b574
This seems to have been confusing people, using both xlibs and xorg, etc. - Avoided renaming local (and different) xlibs binding in gcc*. - Fixed cases where both xorg and xlibs were used. Hopefully everything still works as before.
22 lines
668 B
Nix
22 lines
668 B
Nix
{ stdenv, fetchurl, python, pkgconfig, popt, atk, libX11, libICE, xorg, libXi
|
|
, intltool, dbus_glib, at_spi2_core, libSM }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
versionMajor = "2.16";
|
|
versionMinor = "0";
|
|
moduleName = "at-spi2-atk";
|
|
name = "${moduleName}-${versionMajor}.${versionMinor}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${moduleName}/${versionMajor}/${name}.tar.xz";
|
|
sha256 = "1y9gfz1iz3wpja7s000f0bmyyvc6im5fcdl6bxwbz0v3qdgc9vvq";
|
|
};
|
|
|
|
buildInputs = [ python pkgconfig popt atk libX11 libICE xorg.libXtst libXi
|
|
intltool dbus_glib at_spi2_core libSM ];
|
|
|
|
meta = with stdenv.lib; {
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|