summary refs log tree commit diff
path: root/pkgs/tools/networking/igmpproxy
diff options
context:
space:
mode:
authorScott Dier <scott@dier.name>2020-10-23 12:26:31 +0200
committerScott Dier <scott@dier.name>2020-10-23 13:35:22 +0200
commitf06ef735a334a0254f6d887bb46ae7b8cf94851a (patch)
treeb0877376821827c0a1f78e01a77fa49ff6a9472e /pkgs/tools/networking/igmpproxy
parentb36db49ae73db879fe00f73f2777077f33a68745 (diff)
downloadnixpkgs-f06ef735a334a0254f6d887bb46ae7b8cf94851a.tar
nixpkgs-f06ef735a334a0254f6d887bb46ae7b8cf94851a.tar.gz
nixpkgs-f06ef735a334a0254f6d887bb46ae7b8cf94851a.tar.bz2
nixpkgs-f06ef735a334a0254f6d887bb46ae7b8cf94851a.tar.lz
nixpkgs-f06ef735a334a0254f6d887bb46ae7b8cf94851a.tar.xz
nixpkgs-f06ef735a334a0254f6d887bb46ae7b8cf94851a.tar.zst
nixpkgs-f06ef735a334a0254f6d887bb46ae7b8cf94851a.zip
igmpproxy: init at version 0.2.1
Diffstat (limited to 'pkgs/tools/networking/igmpproxy')
-rw-r--r--pkgs/tools/networking/igmpproxy/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/tools/networking/igmpproxy/default.nix b/pkgs/tools/networking/igmpproxy/default.nix
new file mode 100644
index 00000000000..83b35c09866
--- /dev/null
+++ b/pkgs/tools/networking/igmpproxy/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchFromGitHub, autoreconfHook }:
+
+stdenv.mkDerivation rec {
+  pname = "igmpproxy";
+  version = "0.2.1";
+
+  src = fetchFromGitHub {
+    owner = "pali";
+    repo = "igmpproxy";
+    rev = version;
+    sha256 = "13zn4q24drbhpqmcmqh1jg7ind5iqn11wj3xvczlc8w35vyqssyf";
+  };
+
+  nativeBuildInputs = [ autoreconfHook ];
+
+  meta = with stdenv.lib; {
+    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;
+  };
+}