latte-dock: 0.9.11 -> 0.9.12
[NixPkgs.git] / pkgs / tools / networking / igmpproxy / default.nix
blob9f924964907830c6c29fc2f8a0b951f931d39fde
1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "igmpproxy";
5   version = "0.3";
7   src = fetchFromGitHub {
8     owner = "pali";
9     repo = "igmpproxy";
10     rev = version;
11     sha256 = "sha256-B7mq+5pKWMO4dJeFPB7tiyjDQjj90g/kmYB2ApBE3Ic=";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
16   meta = with lib; {
17     description = "A daemon that routes multicast using IGMP forwarding";
18     homepage = "https://github.com/pali/igmpproxy/";
19     changelog = "https://github.com/pali/igmpproxy/releases/tag/${version}";
20     license = licenses.gpl2Plus;
21     maintainers = [ maintainers.sdier ];
22     # The maintainer is using this on linux, but if you test it on other platforms
23     # please add them here!
24     platforms = platforms.linux;
25   };