f7e390e6d4
Related: -9fc5e7e473
-593e11fd94
-508ae42a0f
Since the last time I ran this script, the Repology API changed, so I had to adapt the script used in the previous PR. The new API should be more robust, so overall this is a positive (no more grepping the error messages for our relevant data but just a nice json structure). Here's the new script I used: ```sh curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \ | sort | uniq | tee script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ``` I will also add this script to `maintainers/scripts`.
34 lines
1.1 KiB
Nix
34 lines
1.1 KiB
Nix
{ stdenv, fetchurl, libiconv, libshout, taglib, libxml2, pkgconfig }:
|
|
|
|
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 = [ pkgconfig ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A 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.gpl2;
|
|
maintainers = [ maintainers.barrucadu ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|