nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 fetchFromGitHub,
5 autoreconfHook,
6}:
7
8stdenv.mkDerivation rec {
9 pname = "igmpproxy";
10 version = "0.4";
11
12 src = fetchFromGitHub {
13 owner = "pali";
14 repo = "igmpproxy";
15 rev = version;
16 sha256 = "sha256-kv8XtZ/z8zPHYSZ4k4arn2Y+L2xegr2DwhvlguJV820=";
17 };
18
19 nativeBuildInputs = [ autoreconfHook ];
20
21 meta = {
22 description = "Daemon that routes multicast using IGMP forwarding";
23 homepage = "https://github.com/pali/igmpproxy/";
24 changelog = "https://github.com/pali/igmpproxy/releases/tag/${version}";
25 license = lib.licenses.gpl2Plus;
26 maintainers = [ lib.maintainers.sdier ];
27 # The maintainer is using this on linux, but if you test it on other platforms
28 # please add them here!
29 platforms = lib.platforms.linux;
30 mainProgram = "igmpproxy";
31 };
32}