1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/servers/smcroute/default.nix

24 lines
630 B
Nix
Raw Normal View History

2016-07-09 11:49:04 +01:00
{ stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
name = "smcroute-${version}";
2018-02-28 00:33:40 +00:00
version = "2.4.0";
2016-07-09 11:49:04 +01:00
src = fetchFromGitHub {
owner = "troglobit";
repo = "smcroute";
rev = version;
2018-02-28 00:33:40 +00:00
sha256 = "12xwdwvl9h269armwak7grm4g944j2c89srha4lqx2zndx1ycg1r";
2016-07-09 11:49:04 +01:00
};
nativeBuildInputs = [ autoreconfHook ];
meta = with stdenv.lib; {
description = "Static multicast routing daemon";
homepage = http://troglobit.com/smcroute.html;
2016-07-09 11:49:04 +01:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ fpletz ];
platforms = with platforms; (linux ++ freebsd ++ netbsd ++ openbsd);
};
}