l radio: use icecast 2.5-beta3
This commit is contained in:
parent
f611ce80c9
commit
060080342a
@ -128,6 +128,18 @@ in {
|
||||
serviceConfig.User = lib.mkForce "radio";
|
||||
};
|
||||
|
||||
nixpkgs.config.packageOverrides = opkgs: {
|
||||
icecast = opkgs.icecast.overrideAttrs (old: rec {
|
||||
version = "2.5-beta3";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "http://downloads.xiph.org/releases/icecast/icecast-${version}.tar.gz";
|
||||
sha256 = "sha256-4FDokoA9zBDYj8RAO/kuTHaZ6jZYBLSJZiX/IYFaCW8=";
|
||||
};
|
||||
|
||||
buildInputs = old.buildInputs ++ [ pkgs.pkg-config ];
|
||||
});
|
||||
};
|
||||
services.icecast = {
|
||||
enable = true;
|
||||
hostname = "radio.lassul.us";
|
||||
@ -135,7 +147,14 @@ in {
|
||||
extraConf = ''
|
||||
<authentication>
|
||||
<source-password>hackme</source-password>
|
||||
<admin-user>admin</admin-user>
|
||||
<admin-password>hackme</admin-password>
|
||||
</authentication>
|
||||
<logging>
|
||||
<accesslog>-</accesslog>
|
||||
<errorlog>-</errorlog>
|
||||
<loglevel>3</loglevel>
|
||||
</logging>
|
||||
'';
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user