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
33 lines
816 B
Nix
33 lines
816 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "igmpproxy";
|
|
version = "0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pali";
|
|
repo = "igmpproxy";
|
|
rev = version;
|
|
sha256 = "sha256-kv8XtZ/z8zPHYSZ4k4arn2Y+L2xegr2DwhvlguJV820=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
meta = {
|
|
description = "Daemon that routes multicast using IGMP forwarding";
|
|
homepage = "https://github.com/pali/igmpproxy/";
|
|
changelog = "https://github.com/pali/igmpproxy/releases/tag/${version}";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ lib.maintainers.sdier ];
|
|
# The maintainer is using this on linux, but if you test it on other platforms
|
|
# please add them here!
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "igmpproxy";
|
|
};
|
|
}
|