mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
gnome2.libbonobo: Drop
This commit is contained in:
parent
9fb7750cdd
commit
9f3282ec3b
@ -23,8 +23,6 @@ lib.makeScope pkgs.newScope (self: with self; {
|
||||
|
||||
gnome_mime_data = callPackage ./platform/gnome-mime-data { };
|
||||
|
||||
libbonobo = callPackage ./platform/libbonobo { };
|
||||
|
||||
gtkglext = callPackage ./platform/gtkglext { };
|
||||
|
||||
#### DESKTOP
|
||||
@ -60,6 +58,7 @@ lib.makeScope pkgs.newScope (self: with self; {
|
||||
gnome_vfs = throw "gnome2.gnome_vfs has been removed"; # 2024-06-27
|
||||
gtkhtml = throw "gnome2.gtkhtml has been removed"; # 2023-01-15
|
||||
gtkhtml4 = throw "gnome2.gtkhtml4 has been removed"; # 2023-01-15
|
||||
libbonobo = throw "gnome2.libbonobo has been removed"; # 2024-06-27
|
||||
libbonoboui = throw "gnome2.libbonoboui has been removed"; # 2024-06-27
|
||||
libglademm = throw "gnome2.libglademm has been removed"; # 2022-01-15
|
||||
libgnomecanvasmm = "gnome2.libgnomecanvasmm has been removed"; # 2022-01-15
|
||||
|
@ -1,21 +0,0 @@
|
||||
{ lib, stdenv, fetchurl, flex, bison, pkg-config, glib, libxml2, popt
|
||||
, intltool, ORBit2, procps }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libbonobo";
|
||||
version = "2.32.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/libbonobo/${lib.versions.majorMinor version}/libbonobo-${version}.tar.bz2";
|
||||
sha256 = "0swp4kk6x7hy1rvd1f9jba31lvfc6qvafkvbpg9h0r34fzrd8q4i";
|
||||
};
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
preConfigure = # still using stuff deprecated in new glib versions
|
||||
"sed 's/-DG_DISABLE_DEPRECATED//g' -i configure activation-server/Makefile.in";
|
||||
|
||||
nativeBuildInputs = [ flex bison pkg-config intltool procps ];
|
||||
buildInputs = [ libxml2 ];
|
||||
propagatedBuildInputs = [ popt glib ORBit2 ];
|
||||
}
|
Loading…
Reference in New Issue
Block a user