mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
libiconv,
|
|
libshout,
|
|
taglib,
|
|
libxml2,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ezstream";
|
|
version = "0.6.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://ftp.osuosl.org/pub/xiph/releases/ezstream/${pname}-${version}.tar.gz";
|
|
sha256 = "f86eb8163b470c3acbc182b42406f08313f85187bd9017afb8b79b02f03635c9";
|
|
};
|
|
|
|
buildInputs = [
|
|
libiconv
|
|
libshout
|
|
taglib
|
|
libxml2
|
|
];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "Command line source client for Icecast media streaming servers";
|
|
longDescription = ''
|
|
Ezstream is a command line source client for Icecast media
|
|
streaming servers. It began as the successor of the old "shout"
|
|
utility, and has since gained a lot of useful features.
|
|
|
|
In its basic mode of operation, it streams media files or data
|
|
from standard input without reencoding and thus requires only
|
|
very little CPU resources.
|
|
'';
|
|
homepage = "https://icecast.org/ezstream/";
|
|
license = licenses.gpl2Only;
|
|
maintainers = [ maintainers.barrucadu ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|