dvdstyler: remove libgnomeui dependency

It has not been maintained in decades and is not used anyway since `configure.ac`
makes it conditional on WxWidgets using GTK 2 but we use GTK 3 now.

`configure.ac` has thumbnailing code path for GTK 3 that uses more modern
`gnome-desktop-3.0` but that is commented out.
This commit is contained in:
Jan Tojnar 2024-06-27 11:05:25 +02:00
parent e546c90362
commit d406dc972e
2 changed files with 2 additions and 6 deletions

View File

@ -24,7 +24,6 @@
, zip
, dvdisasterSupport ? true, dvdisaster ? null
, thumbnailSupport ? true, libgnomeui ? null
, udevSupport ? true, udev ? null
, dbusSupport ? true, dbus ? null
}:
@ -72,8 +71,7 @@ in stdenv.mkDerivation rec {
]
++ optionals dvdisasterSupport [ dvdisaster ]
++ optionals udevSupport [ udev ]
++ optionals dbusSupport [ dbus ]
++ optionals thumbnailSupport [ libgnomeui ];
++ optionals dbusSupport [ dbus ];
enableParallelBuilding = true;

View File

@ -30192,9 +30192,7 @@ with pkgs;
dvd-slideshow = callPackage ../applications/video/dvd-slideshow { };
dvdstyler = callPackage ../applications/video/dvdstyler {
inherit (gnome2) libgnomeui;
};
dvdstyler = callPackage ../applications/video/dvdstyler { };
dyff = callPackage ../development/tools/dyff { };