Files
nixpkgs/pkgs/by-name/fl/flvstreamer/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

44 lines
971 B
Nix

{
lib,
stdenv,
fetchurl,
}:
stdenv.mkDerivation rec {
pname = "flvstreamer";
version = "2.1c1";
src = fetchurl {
url = "mirror://savannah/flvstreamer/source/flvstreamer-${version}.tar.gz";
sha256 = "e90e24e13a48c57b1be01e41c9a7ec41f59953cdb862b50cf3e667429394d1ee";
};
buildPhase = ''
make CC=${stdenv.cc.targetPrefix}cc posix
'';
installPhase = ''
mkdir -p $out/bin
cp flvstreamer $out/bin
cp streams $out/bin
cp rtmpsrv $out/bin
cp rtmpsuck $out/bin
'';
meta = {
description = "Command-line RTMP client";
longDescription = ''
flvstreamer is an open source command-line RTMP client intended to
stream audio or video content from all types of flash or rtmp servers.
'';
license = lib.licenses.gpl2Plus;
homepage = "https://savannah.nongnu.org/projects/flvstreamer";
maintainers = [ lib.maintainers.thammers ];
platforms = with lib.platforms; linux ++ darwin;
};
}