igmpproxy: init at version 0.2.1
This commit is contained in:
parent
b36db49ae7
commit
f06ef735a3
26
pkgs/tools/networking/igmpproxy/default.nix
Normal file
26
pkgs/tools/networking/igmpproxy/default.nix
Normal file
@ -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;
|
||||||
|
};
|
||||||
|
}
|
@ -4569,6 +4569,8 @@ in
|
|||||||
irods
|
irods
|
||||||
irods-icommands;
|
irods-icommands;
|
||||||
|
|
||||||
|
igmpproxy = callPackage ../tools/networking/igmpproxy { };
|
||||||
|
|
||||||
ihaskell = callPackage ../development/tools/haskell/ihaskell/wrapper.nix {
|
ihaskell = callPackage ../development/tools/haskell/ihaskell/wrapper.nix {
|
||||||
inherit (haskellPackages) ghcWithPackages;
|
inherit (haskellPackages) ghcWithPackages;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user