mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
30 lines
649 B
Nix
30 lines
649 B
Nix
{ lib
|
|
, stdenv
|
|
, cmake
|
|
, pkg-config
|
|
, fetchFromGitHub
|
|
, libmodbus
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "mbpoll";
|
|
version = "1.5.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "epsilonrt";
|
|
repo = "mbpoll";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-rO3j/p7MABlxcwRAZm26u7wgODGFTtetSDhPWPzTuEA=";
|
|
};
|
|
|
|
buildInputs = [ libmodbus ];
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
meta = with lib; {
|
|
description = "Command line utility to communicate with ModBus slave (RTU or TCP)";
|
|
homepage = "https://epsilonrt.fr";
|
|
license = licenses.gpl3;
|
|
mainProgram = "mbpoll";
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|