boots: Sort expression strings/attributes.
I know, I know, this is me being ultra-nazi about those things, but beets is about OCDing your music collection, so why not apply this to the Nix expressions as well? Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
b836ab365b
commit
642b8ae658
@ -20,8 +20,8 @@ assert enableEchonest -> pythonPackages.pyechonest != null;
|
|||||||
assert enableFetchart -> pythonPackages.responses != null;
|
assert enableFetchart -> pythonPackages.responses != null;
|
||||||
assert enableLastfm -> pythonPackages.pylast != null;
|
assert enableLastfm -> pythonPackages.pylast != null;
|
||||||
assert enableMpd -> pythonPackages.mpd != null;
|
assert enableMpd -> pythonPackages.mpd != null;
|
||||||
assert enableThumbnails -> pythonPackages.pyxdg != null;
|
|
||||||
assert enableReplaygain -> pythonPackages.audiotools != null;
|
assert enableReplaygain -> pythonPackages.audiotools != null;
|
||||||
|
assert enableThumbnails -> pythonPackages.pyxdg != null;
|
||||||
assert enableWeb -> pythonPackages.flask != null;
|
assert enableWeb -> pythonPackages.flask != null;
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
@ -42,11 +42,11 @@ let
|
|||||||
};
|
};
|
||||||
|
|
||||||
pluginsWithoutDeps = [
|
pluginsWithoutDeps = [
|
||||||
"bench" "bpd" "bpm" "bucket" "convert" "cue" "duplicates" "embedart" "freedesktop"
|
"bench" "bpd" "bpm" "bucket" "convert" "cue" "duplicates" "embedart"
|
||||||
"fromfilename" "filefilter" "ftintitle" "fuzzy" "ihate" "importadded" "importfeeds"
|
"filefilter" "freedesktop" "fromfilename" "ftintitle" "fuzzy" "ihate"
|
||||||
"info" "inline" "keyfinder" "lyrics" "mbcollection" "mbsync" "missing"
|
"importadded" "importfeeds" "info" "inline" "keyfinder" "lyrics"
|
||||||
"permissions" "play" "plexupdate" "random" "rewrite" "scrub" "smartplaylist"
|
"mbcollection" "mbsync" "missing" "permissions" "play" "plexupdate" "random"
|
||||||
"spotify" "the" "types" "zero"
|
"rewrite" "scrub" "smartplaylist" "spotify" "the" "types" "zero"
|
||||||
];
|
];
|
||||||
|
|
||||||
enabledOptionalPlugins = attrNames (filterAttrs (_: id) optionalPlugins);
|
enabledOptionalPlugins = attrNames (filterAttrs (_: id) optionalPlugins);
|
||||||
@ -85,8 +85,8 @@ in buildPythonPackage rec {
|
|||||||
++ optional enableEchonest pythonPackages.pyechonest
|
++ optional enableEchonest pythonPackages.pyechonest
|
||||||
++ optional enableLastfm pythonPackages.pylast
|
++ optional enableLastfm pythonPackages.pylast
|
||||||
++ optional enableMpd pythonPackages.mpd
|
++ optional enableMpd pythonPackages.mpd
|
||||||
++ optional enableThumbnails pythonPackages.pyxdg
|
|
||||||
++ optional enableReplaygain pythonPackages.audiotools
|
++ optional enableReplaygain pythonPackages.audiotools
|
||||||
|
++ optional enableThumbnails pythonPackages.pyxdg
|
||||||
++ optional enableWeb pythonPackages.flask;
|
++ optional enableWeb pythonPackages.flask;
|
||||||
|
|
||||||
buildInputs = with pythonPackages; [
|
buildInputs = with pythonPackages; [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user