Compare commits

..

No commits in common. "e620178375d299846a5037ea79c0e8f57d8d98e7" and "894ead548aa4adff2cf46acd0670a7318fbdedd4" have entirely different histories.

5 changed files with 10 additions and 12 deletions

8
flake.lock generated
View file

@ -452,16 +452,16 @@
"nixpkgs-regression": "nixpkgs-regression"
},
"locked": {
"lastModified": 1744410622,
"narHash": "sha256-5ytFYIYbPQY1Frt870yb8gNwp2wkqiyGHKg7HQ4DMb0=",
"lastModified": 1742837300,
"narHash": "sha256-pidBRgonX1k7NJ1K8ML0rX1WWrAuYlGmQWz2xKXyEFY=",
"owner": "NixOS",
"repo": "nix",
"rev": "3094e39dc4087a2f7dcac55acfa07325361e9514",
"rev": "5a4e306cc5853922b292525ed23c59ba07f9d243",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "3094e39dc4087a2f7dcac55acfa07325361e9514",
"ref": "5a4e306cc5853922b292525ed23c59ba07f9d243",
"repo": "nix",
"type": "github"
}

View file

@ -24,7 +24,7 @@
type = "github";
owner = "NixOS";
repo = "nix";
ref = "3094e39dc4087a2f7dcac55acfa07325361e9514";
ref = "5a4e306cc5853922b292525ed23c59ba07f9d243";
inputs.nixpkgs.follows = "stable";
};
#other

View file

@ -10,7 +10,7 @@
pluginsDir = lavalinkPlugins;
plugins = [
{
dependency = "dev.lavalink.youtube:youtube-plugin:1.12.0";
dependency = "dev.lavalink.youtube:youtube-plugin:1.11.5";
enabled = true;
snapshot = false;
}

View file

@ -4,7 +4,6 @@
fetchurl,
makeBinaryWrapper,
zulu17,
udev,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "lavalink";
@ -24,8 +23,7 @@ stdenvNoCC.mkDerivation (finalAttrs: {
mkdir -p "$out/bin"
makeWrapper '${lib.getExe zulu17}' "$out/bin/lavalink" \
--add-flags "-jar $out/lib/Lavalink.jar" \
--set 'LD_LIBRARY_PATH' '${lib.makeLibraryPath [ udev ]}'
--add-flags "-jar $out/lib/Lavalink.jar"
'';
meta.mainProgram = "lavalink";

View file

@ -4,10 +4,10 @@
}:
linkFarm "lavalinkPlugins" [
{
name = "youtube-plugin-1.12.0.jar";
name = "youtube-plugin-1.11.5.jar";
path = fetchurl {
url = "https://github.com/lavalink-devs/youtube-source/releases/download/1.12.0/youtube-plugin-1.12.0.jar";
hash = "sha256-M9CDMDGR7fBldPLLG/I5TN21DLNN440nzF1l34MrQK0=";
url = "https://github.com/lavalink-devs/youtube-source/releases/download/1.11.5/youtube-plugin-1.11.5.jar";
hash = "sha256-Zz4S5mWcsVFWGmN41L34GqZeCOswt/CAn+1PN1XJtbk=";
};
}
]