Created
September 14, 2017 22:30
-
-
Save sauyon/205657e3c7fa7a63a45fce84e4dc8f3a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
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