depot/pkgs/tools/networking/igmpproxy/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

27 lines
805 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 = with lib; {
description = "Daemon that routes multicast using IGMP forwarding";
homepage = "https://github.com/pali/igmpproxy/";
changelog = "https://github.com/pali/igmpproxy/releases/tag/${version}";
license = licenses.gpl2Plus;
maintainers = [ maintainers.sdier ];
# The maintainer is using this on linux, but if you test it on other platforms
# please add them here!
platforms = platforms.linux;
mainProgram = "igmpproxy";
};
}