jmusicbot: init at 0.3.4

This commit is contained in:
Sandro Jäckel 2021-03-27 23:34:37 +01:00
parent d4c397a4ea
commit 3b5ce3144b
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ stdenv, lib, fetchurl, makeWrapper, jre }:
stdenv.mkDerivation rec {
pname = "JMusicBot";
version = "0.3.4";
src = fetchurl {
url = "https://github.com/jagrosh/MusicBot/releases/download/${version}/JMusicBot-${version}.jar";
sha256 = "sha256-++/ot9k74pkN9Wl7IEjiMIv/q5zklIEdU6uFjam0tmU=";
};
dontUnpack = true;
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
mkdir -p $out/lib
cp $src $out/lib/JMusicBot
makeWrapper ${jre}/bin/java $out/bin/JMusicBot \
--add-flags "-Xmx1G -Dnogui=true -jar $out/lib/JMusicBot"
'';
meta = with lib; {
description = "Discord music bot that's easy to set up and run yourself";
homepage = "https://github.com/jagrosh/MusicBot";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
platforms = platforms.all;
};
}

View file

@ -22954,6 +22954,8 @@ in
jdk = callPackage ../development/compilers/jetbrains-jdk { };
});
jmusicbot = callPackage ../applications/audio/jmusicbot { };
libquvi = callPackage ../applications/video/quvi/library.nix { };
librespot = callPackage ../applications/audio/librespot {