ezstream: fix on darwin + clean (#406610)

This commit is contained in:
Aleksana 2025-06-10 20:41:09 +08:00 committed by GitHub
commit 31d895a218
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,38 +2,56 @@
lib,
stdenv,
fetchurl,
check,
# nativeBuildInputs
pkg-config,
# buildInputs
libiconv,
libshout,
taglib,
libxml2,
pkg-config,
taglib,
# checkInputs
check,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "ezstream";
version = "1.0.2";
src = fetchurl {
url = "https://ftp.osuosl.org/pub/xiph/releases/ezstream/${pname}-${version}.tar.gz";
url = "https://ftp.osuosl.org/pub/xiph/releases/ezstream/ezstream-${finalAttrs.version}.tar.gz";
hash = "sha256-Ed6Jf0ValbpYVGvc1AqV072mmGbsX3h5qDsCQSbFTCo=";
};
postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
substituteInPlace src/playlist.c \
--replace-fail "#include <sys/stat.h>" $'#include <stddef.h>\n#include <sys/stat.h>'
substituteInPlace tests/Makefile.am \
--replace-fail "check_playlist " ""
substituteInPlace tests/check_mdata.c \
--replace-fail 'ck_assert_int_eq(mdata_run_program(md, SRCDIR "/test-meta03-huge.sh"), 0);' ""
'';
nativeBuildInputs = [ pkg-config ];
buildInputs = [
check
libiconv
libshout
libxml2
check
taglib
];
checkInputs = [
check
];
buildInputs = [
libiconv
libshout
taglib
libxml2
];
nativeBuildInputs = [ pkg-config ];
doCheck = true;
meta = with lib; {
meta = {
description = "Command line source client for Icecast media streaming servers";
longDescription = ''
Ezstream is a command line source client for Icecast media
@ -45,8 +63,8 @@ stdenv.mkDerivation rec {
very little CPU resources.
'';
homepage = "https://icecast.org/ezstream/";
license = licenses.gpl2Only;
maintainers = [ maintainers.barrucadu ];
platforms = platforms.all;
license = lib.licenses.gpl2Only;
maintainers = [ lib.maintainers.barrucadu ];
platforms = lib.platforms.all;
};
}
})