Skip to content

Commit

Permalink
quodlibet: rename to quodlibet, quodlibet-without-gst-plugins
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Kosyrev Serge authored and globin committed Jan 25, 2017
1 parent a6968ad commit 4f8b406
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkgs/applications/audio/quodlibet/default.nix
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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;
};
Expand Down

0 comments on commit 4f8b406

Please sign in to comment.