mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
23 lines
695 B
Nix
23 lines
695 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 = "1";
|
|
moduleName = "at-spi2-atk";
|
|
name = "${moduleName}-${versionMajor}.${versionMinor}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${moduleName}/${versionMajor}/${name}.tar.xz";
|
|
sha256 = "0x9vc99ni46fg5dzlx67vbw0zqffr24gz8jvbdxbmzyvc5xw5w5l";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
buildInputs = [ python popt atk libX11 libICE xorg.libXtst libXi
|
|
dbus_glib at_spi2_core libSM ];
|
|
|
|
meta = with stdenv.lib; {
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|