Skip to content

Instantly share code, notes, and snippets.

@sauyon
Created September 14, 2017 22:30
Show Gist options
  • Save sauyon/205657e3c7fa7a63a45fce84e4dc8f3a to your computer and use it in GitHub Desktop.
Save sauyon/205657e3c7fa7a63a45fce84e4dc8f3a to your computer and use it in GitHub Desktop.
{
quodlibet-xine = callPackage ../applications/audio/quodlibet {
xineBackend = true;
keybinder3 = null;
gtksourceview = null;
libmodplug = null;
kakasi = null;
libappindicator-gtk3 = null;
};
quodlibet-without-gst-plugins = callPackage ../applications/audio/quodlibet {
withGstPlugins = false;
keybinder3 = null;
gtksourceview = null;
libmodplug = null;
kakasi = null;
libappindicator-gtk3 = null;
};
quodlibet = callPackage ../applications/audio/quodlibet {
keybinder3 = null;
gtksourceview = null;
libmodplug = null;
kakasi = null;
libappindicator-gtk3 = null;
};
quodlibet-xine-full = callPackage ../applications/audio/quodlibet {
xineBackend = true;
withDbusPython = true;
withLibKeybinder = true;
withLibGtkSourceView = true;
withPyInotify = true;
withMusicBrainzNgs = true;
keybinder3 = keybinder3;
gtksourceview = gtksourceview;
libmodplug = libmodplug;
kakasi = kakasi;
webkitgtk = webkitgtk24x-gtk2;
libappindicator-gtk3 = libappindicator-gtk3;
};
quodlibet-full = callPackage ../applications/audio/quodlibet {
withDbusPython = true;
withLibKeybinder = true;
withLibGtkSourceView = true;
withPyInotify = true;
withMusicBrainzNgs = true;
keybinder3 = keybinder3;
gtksourceview = gtksourceview;
libmodplug = libmodplug;
kakasi = kakasi;
webkitgtk = webkitgtk24x-gtk2;
libappindicator-gtk3 = libappindicator-gtk3;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment