From 060080342a214bd88b06b301ce3360671fe45711 Mon Sep 17 00:00:00 2001 From: lassulus Date: Sat, 7 Jan 2023 22:39:58 +0100 Subject: l radio: use icecast 2.5-beta3 --- lass/2configs/radio/default.nix | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) (limited to 'lass/2configs') diff --git a/lass/2configs/radio/default.nix b/lass/2configs/radio/default.nix index e883ed91..3eab68e9 100644 --- a/lass/2configs/radio/default.nix +++ b/lass/2configs/radio/default.nix @@ -128,14 +128,33 @@ 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"; admin.password = "hackme"; extraConf = '' - hackme + hackme + admin + hackme + + - + - + 3 + ''; }; -- cgit v1.2.3