nixpkgs/pkgs/development/libraries/at-spi2-atk/default.nix

22 lines
671 B
Nix
Raw Normal View History

{ stdenv, fetchurl, python, pkgconfig, popt, atk, libX11, libICE, xlibs, libXi
2013-01-29 08:10:07 +04:00
, intltool, dbus_glib, at_spi2_core, libSM }:
stdenv.mkDerivation rec {
versionMajor = "2.14";
2014-05-19 01:58:13 +04:00
versionMinor = "1";
moduleName = "at-spi2-atk";
name = "${moduleName}-${versionMajor}.${versionMinor}";
src = fetchurl {
url = "mirror://gnome/sources/${moduleName}/${versionMajor}/${name}.tar.xz";
sha256 = "1jvvs5bb63xa8ip4cvmpmyyc35gyh39bvwn967wabw7dc3m393q5";
};
buildInputs = [ python pkgconfig popt atk libX11 libICE xlibs.libXtst libXi
2013-01-29 08:10:07 +04:00
intltool dbus_glib at_spi2_core libSM ];
meta = with stdenv.lib; {
platforms = platforms.linux;
};
}