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

27 lines
776 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
2020-10-23 12:26:31 +02:00
stdenv.mkDerivation rec {
pname = "igmpproxy";
2021-01-19 01:39:30 +01:00
version = "0.3";
2020-10-23 12:26:31 +02:00
src = fetchFromGitHub {
owner = "pali";
repo = "igmpproxy";
rev = version;
2021-01-19 01:39:30 +01:00
sha256 = "sha256-B7mq+5pKWMO4dJeFPB7tiyjDQjj90g/kmYB2ApBE3Ic=";
2020-10-23 12:26:31 +02:00
};
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
2020-10-23 12:26:31 +02: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;
};
}