nixpkgs/pkgs/tools/networking/zs-apc-spdu-ctl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
778 B
Nix
Raw Normal View History

2021-02-26 23:04:37 +00:00
{ cmake
, fetchFromGitHub
, fping
, lib
, libowlevelzs
, net-snmp
, stdenv
}:
# TODO: add a services entry for the /etc/zs-apc-spdu.conf file
stdenv.mkDerivation rec {
pname = "zs-apc-spdu-ctl";
version = "0.0.2";
src = fetchFromGitHub {
owner = "fogti";
2021-02-26 23:04:37 +00:00
repo = "zs-apc-spdu-ctl";
rev = "v${version}";
sha256 = "TMV9ETWBVeXq6tZ2e0CrvHBXoyKfOLCQurjBdf/iw/M=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ libowlevelzs net-snmp ];
2021-02-26 23:04:37 +00:00
postPatch = ''
substituteInPlace src/confent.cxx \
--replace /usr/sbin/fping "${fping}/bin/fping"
2021-02-26 23:04:37 +00:00
'';
meta = with lib; {
description = "APC SPDU control utility";
license = licenses.mit;
maintainers = [ ];
2021-02-26 23:04:37 +00:00
platforms = platforms.linux;
2024-02-11 02:19:15 +00:00
mainProgram = "zs-apc-spdu-ctl";
2021-02-26 23:04:37 +00:00
};
}