mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
ec3965d8d0
See #490 discussion. This reverts commit1278859d31
, reversing changes made to0c020c98f9
. Conflicts: pkgs/desktops/xfce/core/xfce4-session.nix (take master) pkgs/lib/misc.nix (auto)
26 lines
761 B
Nix
26 lines
761 B
Nix
{ stdenv, fetchurl, glib, flex, bison, pkgconfig, libffi, python }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gobject-introspection-1.34.0";
|
|
|
|
buildInputs = [ flex bison glib pkgconfig python ];
|
|
propagatedBuildInputs = [ libffi ];
|
|
|
|
# Tests depend on cairo, which is undesirable (it pulls in lots of
|
|
# other dependencies).
|
|
configureFlags = "--disable-tests";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gobject-introspection/1.34/${name}.tar.xz";
|
|
sha256 = "80e211ea95404fc7c5fa3b04ba69ee0b29af70847af315155ab06b8cff832c85";
|
|
};
|
|
|
|
postInstall = "rm -rf $out/share/gtk-doc";
|
|
|
|
meta = with stdenv.lib; {
|
|
maintainers = [ maintainers.urkud ];
|
|
platforms = platforms.linux;
|
|
homepage = http://live.gnome.org/GObjectIntrospection;
|
|
};
|
|
}
|