gnome2.gnome_python_desktop: remove

Unmaintained, depends on libgnome + python2

+3 -36
-32
pkgs/desktops/gnome-2/bindings/gnome-python-desktop/default.nix
··· 1 - { lib, stdenv, fetchurl, gnome_python, librsvg, libwnck2, libgtop, pkg-config, python2, gtk2 }: 2 - 3 - let 4 - inherit (python2.pkgs) python pygtk; 5 - in stdenv.mkDerivation rec { 6 - ver_maj = "2.32"; 7 - ver_min = "0"; 8 - version = "${ver_maj}.${ver_min}"; 9 - pname = "gnome-python-desktop"; 10 - 11 - src = fetchurl { 12 - url = "mirror://gnome/sources/gnome-python-desktop/${ver_maj}/gnome-python-desktop-${version}.tar.bz2"; 13 - sha256 = "1s8f9rns9v7qlwjv9qh9lr8crp88dpzfm45hj47zc3ivpy0dbnq9"; 14 - }; 15 - 16 - nativeBuildInputs = [ pkg-config ]; 17 - buildInputs = [ gtk2 librsvg libwnck2 libgtop python ]; 18 - propagatedBuildInputs = [ gnome_python pygtk ]; 19 - 20 - # gnome-python-desktop expects that .pth file is already installed by PyGTK 21 - # in the same directory. This is not the case for Nix. 22 - postInstall = '' 23 - echo "gtk-2.0" > $out/${python2.sitePackages}/${pname}-${version}.pth 24 - ''; 25 - 26 - meta = with lib; { 27 - homepage = "http://www.pygtk.org"; 28 - description = "Python bindings for GNOME desktop packages"; 29 - license = licenses.lgpl21; 30 - maintainers = [ maintainers.goibhniu ]; 31 - }; 32 - }
+3 -4
pkgs/desktops/gnome-2/default.nix
··· 35 35 36 36 gnome_python = callPackage ./bindings/gnome-python { }; 37 37 38 - gnome_python_desktop = callPackage ./bindings/gnome-python-desktop { }; 39 - 40 38 gnome_vfs = callPackage ./platform/gnome-vfs { }; 41 39 42 40 libgnome = callPackage ./platform/libgnome { }; ··· 72 70 73 71 gtk = pkgs.gtk2; 74 72 gtkmm = pkgs.gtkmm2; 75 - python_rsvg = self.gnome_python_desktop; 76 73 77 74 gtkdoc = pkgs.gtk-doc; 78 75 startup_notification = pkgs.libstartup_notification; ··· 82 79 gnome_icon_theme = self.gnome-icon-theme; 83 80 gnomeicontheme = self.gnome-icon-theme; 84 81 gnome_common = gnome-common; 85 - libglademm = throw "libglademm has been removed"; # 2022-01-15 82 + gnome_python_desktop = throw "gnome2.gnome_python_desktop has been removed"; # 2023-01-14 83 + libglademm = throw "gnome2.libglademm has been removed"; # 2022-01-15 84 + python_rsvg = throw "gnome2.python_rsvg has been removed"; # 2023-01-14 86 85 })