about summary refs log tree commit diff
path: root/pkgs/servers/mbusd/default.nix
blob: 51441f6514cdb9d33241bbd2beffd345d73b3ffa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config }:

stdenv.mkDerivation rec {
  pname = "mbusd";
  version = "0.5.1";

  src = fetchFromGitHub {
    owner = "3cky";
    repo = "mbusd";
    rev = "v${version}";
    hash = "sha256-vYYaJKcnREng+2UsDIZ28hvANkQCHVixQIxo82m7MQs=";
  };

  nativeBuildInputs = [ cmake pkg-config ];

  meta = with lib; {
    description = "Modbus TCP to Modbus RTU (RS-232/485) gateway";
    homepage = "https://github.com/3cky/mbusd";
    changelog = "https://github.com/3cky/mbusd/blob/v${version}/CHANGELOG.md";
    license = licenses.bsd3;
    maintainers = with maintainers; [ sikmir ];
    platforms = platforms.unix;
    mainProgram = "mbusd";
  };
}