9 stdenv.mkDerivation (finalAttrs: {
13 src = fetchFromGitHub {
16 rev = "v${finalAttrs.version}";
17 hash = "sha256-rO3j/p7MABlxcwRAZm26u7wgODGFTtetSDhPWPzTuEA=";
20 buildInputs = [ libmodbus ];
21 nativeBuildInputs = [ cmake pkg-config ];
24 description = "Command line utility to communicate with ModBus slave (RTU or TCP)";
25 homepage = "https://epsilonrt.fr";
26 license = licenses.gpl3;
27 mainProgram = "mbpoll";
28 platforms = platforms.linux;