Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a3f9335ed25c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1754f25ec713
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 23, 2020

  1. Copy the full SHA
    f06ef73 View commit details

Commits on Nov 27, 2020

  1. Merge pull request #101455 from sdier/igmpproxy-package

    igmpproxy: init at version 0.2.1
    SuperSandro2000 authored Nov 27, 2020
    Copy the full SHA
    1754f25 View commit details
Showing with 28 additions and 0 deletions.
  1. +26 −0 pkgs/tools/networking/igmpproxy/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
26 changes: 26 additions & 0 deletions pkgs/tools/networking/igmpproxy/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -4743,6 +4743,8 @@ in
irods
irods-icommands;

igmpproxy = callPackage ../tools/networking/igmpproxy { };

ihaskell = callPackage ../development/tools/haskell/ihaskell/wrapper.nix {
inherit (haskellPackages) ghcWithPackages;