smcroute: fix smcroutectl
This commit is contained in:
parent
c208823e2d
commit
70bcb50798
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libcap }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "smcroute-${version}";
|
name = "smcroute-${version}";
|
||||||
@ -11,7 +11,13 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "12xwdwvl9h269armwak7grm4g944j2c89srha4lqx2zndx1ycg1r";
|
sha256 = "12xwdwvl9h269armwak7grm4g944j2c89srha4lqx2zndx1ycg1r";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
|
buildInputs = [ libcap ];
|
||||||
|
|
||||||
|
configureFlags = [
|
||||||
|
"--localstatedir=/var"
|
||||||
|
"--with-systemd=\$(out)/lib/systemd/system"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Static multicast routing daemon";
|
description = "Static multicast routing daemon";
|
||||||
|
Loading…
Reference in New Issue
Block a user