Compare commits

..

No commits in common. "8b41227479df9dee0ee1bb9201a23a92c084bf36" and "0aae0cfe45499eb39b7a1502ddf7422d3d9db331" have entirely different histories.

2 changed files with 15 additions and 4 deletions

View File

@ -131,11 +131,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1694183432, "lastModified": 1693985761,
"narHash": "sha256-YyPGNapgZNNj51ylQMw9lAgvxtM2ai1HZVUu3GS8Fng=", "narHash": "sha256-K5b+7j7Tt3+AqbWkcw+wMeqOAWyCD1MH26FPZyWXpdo=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "db9208ab987cdeeedf78ad9b4cf3c55f5ebd269b", "rev": "0bffda19b8af722f8069d09d8b6a24594c80b352",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -9,6 +9,17 @@ let
++ [ python3.pkgs.yt-dlp python310Packages.ytmusicapi ]; ++ [ python3.pkgs.yt-dlp python310Packages.ytmusicapi ];
}); });
soundcloud_token = builtins.readFile ../secrets/soundcloud_token; soundcloud_token = builtins.readFile ../secrets/soundcloud_token;
latest-mopidy-soundcloud = mopidy-soundcloud.overrideAttrs (old: rec {
src = fetchFromGitHub {
owner = "mopidy";
repo = "mopidy-soundcloud";
rev = "fc766b0bf17feb4fc989029b92a315a10ff453ee";
sha256 = "sha256-LftBbfs5KqqkhFQVZRh/AQKQQ+18x8RapRU1mTB7FD8=";
};
propagatedBuildInputs = old.propagatedBuildInputs
++ [ python3.pkgs.beautifulsoup4 ];
});
in { in {
# Configure pipewire as sound server # Configure pipewire as sound server
@ -42,7 +53,7 @@ in {
mopidy-youtube-yt_dlp mopidy-youtube-yt_dlp
mopidy-bandcamp mopidy-bandcamp
mopidy-somafm mopidy-somafm
mopidy-soundcloud latest-mopidy-soundcloud
]; ];
configuration = '' configuration = ''
[audio] [audio]