3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/igmpproxy/default.nix

27 lines
779 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
2020-10-23 11:26:31 +01:00
stdenv.mkDerivation rec {
pname = "igmpproxy";
version = "0.2.1";
src = fetchFromGitHub {
owner = "pali";
repo = "igmpproxy";
rev = version;
sha256 = "13zn4q24drbhpqmcmqh1jg7ind5iqn11wj3xvczlc8w35vyqssyf";
};
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
2020-10-23 11:26:31 +01: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;
};
}