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

33 lines
931 B
Nix
Raw Normal View History

{ stdenv, fetchurl, python, pkgconfig, popt, intltool, dbus_glib
, libX11, xextproto, libSM, libICE, libXtst, libXi, gobjectIntrospection }:
stdenv.mkDerivation rec {
2016-09-18 20:21:39 +01:00
versionMajor = "2.22";
versionMinor = "0";
2012-07-17 23:29:22 +01:00
moduleName = "at-spi2-core";
name = "${moduleName}-${versionMajor}.${versionMinor}";
src = fetchurl {
2012-07-17 23:29:22 +01:00
url = "mirror://gnome/sources/${moduleName}/${versionMajor}/${name}.tar.xz";
2016-09-18 20:21:39 +01:00
sha256 = "415ea3af21318308798e098be8b3a17b2f0cf2fe16cecde5ad840cf4e0f2c80a";
};
outputs = [ "out" "dev" ];
buildInputs = [
python pkgconfig popt intltool dbus_glib
libX11 xextproto libSM libICE libXtst libXi
gobjectIntrospection
];
# ToDo: on non-NixOS we create a symlink from there?
configureFlags = "--with-dbus-daemondir=/run/current-system/sw/bin/";
NIX_LDFLAGS = with stdenv; lib.optionalString isDarwin "-lintl";
meta = with stdenv.lib; {
platforms = platforms.unix;
};
}