quodlibet: rename to quodlibet, quodlibet-without-gst-plugins

The gst-plugin-less version is barely useful out of the box, so it is
the one that should be relegated to a less prominent spot in the namespace.
This commit is contained in:
Kosyrev Serge 2017-01-24 15:26:03 +03:00 committed by Robin Gloster
parent a6968ad43c
commit 4f8b4069e5
2 changed files with 3 additions and 3 deletions

View file

@ -12,7 +12,7 @@ let
inherit (python2Packages) buildPythonApplication python mutagen pygtk pygobject2 dbus-python;
in buildPythonApplication {
# call the package quodlibet and just quodlibet
name = "quodlibet${stdenv.lib.optionalString withGstPlugins "-with-gst-plugins"}-${version}";
name = "quodlibet${stdenv.lib.optionalString (!withGstPlugins) "-without-gst-plugins"}-${version}";
# XXX, tests fail
doCheck = false;

View file

@ -14728,9 +14728,9 @@ with pkgs;
quiterss = qt5.callPackage ../applications/networking/newsreaders/quiterss {};
quodlibet = callPackage ../applications/audio/quodlibet { };
quodlibet-without-gst-plugins = callPackage ../applications/audio/quodlibet { };
quodlibet-with-gst-plugins = callPackage ../applications/audio/quodlibet {
quodlibet = callPackage ../applications/audio/quodlibet {
withGstPlugins = true;
gst_plugins_bad = null;
};