nixpkgs/pkgs/servers/smcroute/default.nix

24 lines
630 B
Nix
Raw Normal View History

2016-07-09 10:49:04 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
name = "smcroute-${version}";
2017-06-20 00:00:30 +00:00
version = "2.3.1";
2016-07-09 10:49:04 +00:00
src = fetchFromGitHub {
owner = "troglobit";
repo = "smcroute";
rev = version;
2017-06-20 00:00:30 +00:00
sha256 = "0a1sgf9p39gbfrh7bhfg1hjqa6y18i7cig7bffmv7spqnvb50zx5";
2016-07-09 10:49:04 +00:00
};
nativeBuildInputs = [ autoreconfHook ];
meta = with stdenv.lib; {
description = "Static multicast routing daemon";
homepage = http://troglobit.com/smcroute.html;
2016-07-09 10:49:04 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ fpletz ];
platforms = with platforms; (linux ++ freebsd ++ netbsd ++ openbsd);
};
}