icecast: 2.4.4 -> 2.5.0

https://icecast.org/news/icecast-release-2_5_0/
This commit is contained in:
Martin Weinelt
2026-01-03 11:03:53 +01:00
parent d91f451ef0
commit 47d1011a3e
+22 -15
View File
@@ -2,34 +2,41 @@
lib,
stdenv,
fetchurl,
libxml2,
libxslt,
pkg-config,
curl,
libvorbis,
libtheora,
speex,
libigloo,
libkate,
libopus,
libtheora,
libvorbis,
libxml2,
libxslt,
rhash,
speex,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "icecast";
version = "2.4.4";
version = "2.5.0";
src = fetchurl {
url = "http://downloads.xiph.org/releases/icecast/icecast-${version}.tar.gz";
sha256 = "0i2d9rhav0x6js2qhjf5iy6j2a7f0d11ail0lfv40hb1kygrgda9";
url = "http://downloads.xiph.org/releases/icecast/icecast-${finalAttrs.version}.tar.gz";
hash = "sha256-2aoHx0Ka7BnZUP9v1CXDcfdxWM00/yIPwZGywYbGfHo=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
libxml2
libxslt
curl
libvorbis
libtheora
speex
libigloo
libkate
libopus
libtheora
libvorbis
libxml2
libxslt
rhash
speex
];
meta = {
@@ -50,4 +57,4 @@ stdenv.mkDerivation rec {
maintainers = with lib.maintainers; [ jcumming ];
platforms = with lib.platforms; unix;
};
}
})