libigloo: init at 0.9.5
This commit is contained in:
@@ -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;
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user