nixpkgs/pkgs/tools/networking/igmpproxy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
807 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
2020-10-23 10:26:31 +00:00
stdenv.mkDerivation rec {
pname = "igmpproxy";
2022-10-29 18:20:02 +00:00
version = "0.4";
2020-10-23 10:26:31 +00:00
src = fetchFromGitHub {
owner = "pali";
repo = "igmpproxy";
rev = version;
2022-10-29 18:20:02 +00:00
sha256 = "sha256-kv8XtZ/z8zPHYSZ4k4arn2Y+L2xegr2DwhvlguJV820=";
2020-10-23 10:26:31 +00:00
};
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
2020-10-23 10:26:31 +00:00
description = "A 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;
2024-02-11 02:19:15 +00:00
mainProgram = "igmpproxy";
2020-10-23 10:26:31 +00:00
};
}