Unverified Commit d91f451e authored by Martin Weinelt's avatar Martin Weinelt
Browse files

libigloo: init at 0.9.5

parent e19d2966
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{
  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;
  };
})