Compare commits
No commits in common. "3b38b7cc05c510226479d270e0cccd87e70d49a6" and "5af1fee3e6310759ad72d26a9b9d44f30dbe88be" have entirely different histories.
3b38b7cc05
...
5af1fee3e6
|
@ -94,11 +94,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1682453498,
|
"lastModified": 1682268651,
|
||||||
"narHash": "sha256-WoWiAd7KZt5Eh6n+qojcivaVpnXKqBsVgpixpV2L9CE=",
|
"narHash": "sha256-2eZriMhnD24Pmb8ideZWZDiXaAVe6LzJrHQiNPck+Lk=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "c8018361fa1d1650ee8d4b96294783cf564e8a7f",
|
"rev": "e78d25df6f1036b3fa76750ed4603dd9d5fe90fc",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -8,6 +8,13 @@ let
|
||||||
propagatedBuildInputs = old.propagatedBuildInputs
|
propagatedBuildInputs = old.propagatedBuildInputs
|
||||||
++ [ python3.pkgs.yt-dlp python310Packages.ytmusicapi ];
|
++ [ python3.pkgs.yt-dlp python310Packages.ytmusicapi ];
|
||||||
});
|
});
|
||||||
|
latest-mopidy-somafm = mopidy-somafm.overrideAttrs (old: rec {
|
||||||
|
src = python3Packages.fetchPypi {
|
||||||
|
version = "2.0.2";
|
||||||
|
pname = "Mopidy-SomaFM";
|
||||||
|
sha256 = "DC0emxkoWfjGHih2C8nINBFByf521Xf+3Ks4JRxNPLM=";
|
||||||
|
};
|
||||||
|
});
|
||||||
soundcloud_token = builtins.readFile ../secrets/soundcloud_token;
|
soundcloud_token = builtins.readFile ../secrets/soundcloud_token;
|
||||||
latest-mopidy-soundcloud = mopidy-soundcloud.overrideAttrs (old: rec {
|
latest-mopidy-soundcloud = mopidy-soundcloud.overrideAttrs (old: rec {
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
|
@ -52,7 +59,7 @@ in {
|
||||||
mopidy-local
|
mopidy-local
|
||||||
mopidy-youtube-yt_dlp
|
mopidy-youtube-yt_dlp
|
||||||
mopidy-bandcamp
|
mopidy-bandcamp
|
||||||
mopidy-somafm
|
latest-mopidy-somafm
|
||||||
latest-mopidy-soundcloud
|
latest-mopidy-soundcloud
|
||||||
];
|
];
|
||||||
configuration = ''
|
configuration = ''
|
||||||
|
|
Loading…
Reference in New Issue