smcroute: init at 2.1.0
This commit is contained in:
parent
4d4a809294
commit
b571a1a373
23
pkgs/servers/smcroute/default.nix
Normal file
23
pkgs/servers/smcroute/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "smcroute-${version}";
|
||||||
|
version = "2.1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "troglobit";
|
||||||
|
repo = "smcroute";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0mmwvjqbzhzwii4g6rz3ms9fhzppnhbsrhr4jqpih2y95cz039gg";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Static multicast routing daemon";
|
||||||
|
homepage = "http://troglobit.com/smcroute.html";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = with maintainers; [ fpletz ];
|
||||||
|
platforms = with platforms; (linux ++ freebsd ++ netbsd ++ openbsd);
|
||||||
|
};
|
||||||
|
}
|
@ -10443,6 +10443,8 @@ in
|
|||||||
|
|
||||||
sipwitch = callPackage ../servers/sip/sipwitch { };
|
sipwitch = callPackage ../servers/sip/sipwitch { };
|
||||||
|
|
||||||
|
smcroute = callPackage ../servers/smcroute { };
|
||||||
|
|
||||||
spawn_fcgi = callPackage ../servers/http/spawn-fcgi { };
|
spawn_fcgi = callPackage ../servers/http/spawn-fcgi { };
|
||||||
|
|
||||||
squid = callPackage ../servers/squid { };
|
squid = callPackage ../servers/squid { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user