mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
33 lines
999 B
Nix
33 lines
999 B
Nix
{ stdenv, lib, fetchurl, makeWrapper, jre_headless }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "JMusicBot";
|
|
version = "0.3.9";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/jagrosh/MusicBot/releases/download/${version}/JMusicBot-${version}.jar";
|
|
sha256 = "sha256-2A1yo2e1MawGLMTM6jWwpQJJuKOmljxFriORv90Jqg8=";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/lib
|
|
cp $src $out/lib/JMusicBot
|
|
|
|
makeWrapper ${jre_headless}/bin/java $out/bin/JMusicBot \
|
|
--add-flags "-Xmx1G -Dnogui=true -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 -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";
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
inherit (jre_headless.meta) platforms;
|
|
};
|
|
}
|