summary refs log blame commit diff
path: root/pkgs/development/libraries/at-spi2-atk/default.nix
blob: 416a33b09a246eeda0fedce6059495c7d1d04b24 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                              
                                             
 
                         
                        
                     

                                                         

                  
                                                                                
                                                                                


                                                                             
                                                          



                                
 
{ stdenv, fetchurl, python, pkgconfig, popt, atk, libX11, libICE, xlibs, libXi
, intltool, dbus_glib, at_spi2_core, libSM }:

stdenv.mkDerivation rec {
  versionMajor = "2.12";
  versionMinor = "1";
  moduleName   = "at-spi2-atk";
  name = "${moduleName}-${versionMajor}.${versionMinor}";

  src = fetchurl {
    url = "mirror://gnome/sources/${moduleName}/${versionMajor}/${name}.tar.xz";
    sha256 = "5fa9c527bdec028e06797563cd52d49bcf06f638549df983424d88db89bb1336";
  };

  buildInputs = [ python pkgconfig popt atk libX11 libICE xlibs.libXtst libXi
                  intltool dbus_glib at_spi2_core libSM ];

  meta = with stdenv.lib; {
    platforms = platforms.linux;
  };
}