libigloo: init at 0.9.5

This commit is contained in:
Martin Weinelt
2026-01-01 19:12:10 +01:00
parent e19d296614
commit d91f451ef0
+27
View File
@@ -0,0 +1,27 @@
{
lib,
stdenv,
fetchurl,
rhash,
icecast,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libigloo";
version = "0.9.5";
src = fetchurl {
url = "https://downloads.xiph.org/releases/igloo/libigloo-${finalAttrs.version}.tar.gz";
hash = "sha256-6iLpEZ96IYiBD5kQDFFVxnYtRZWuITuawp5ptPC4cok=";
};
buildInputs = [ rhash ];
doCheck = true;
meta = {
description = "Generic C framework used and developed by the Icecast project";
license = lib.licenses.gpl2Only;
inherit (icecast.meta) maintainers;
};
})