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

30 lines
789 B
Nix
Raw Normal View History

2018-04-27 00:09:30 +01:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libcap }:
2016-07-09 11:49:04 +01:00
stdenv.mkDerivation rec {
name = "smcroute-${version}";
2019-03-02 04:07:17 +00:00
version = "2.4.4";
2016-07-09 11:49:04 +01:00
src = fetchFromGitHub {
owner = "troglobit";
repo = "smcroute";
rev = version;
2019-03-02 04:07:17 +00:00
sha256 = "0mjq9cx093b0825rqbcq3z0lzy81pd8h0fz6rda6npg3604rxj81";
2016-07-09 11:49:04 +01:00
};
2018-04-27 00:09:30 +01:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ libcap ];
configureFlags = [
"--localstatedir=/var"
"--with-systemd=\$(out)/lib/systemd/system"
];
2016-07-09 11:49:04 +01:00
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);
};
}