2014-06-14 20:45:43 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-27 04:50:09 +00:00
|
|
|
name = "libmodbus-3.1.4";
|
2014-06-14 20:45:43 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://libmodbus.org/releases/${name}.tar.gz";
|
2018-02-27 04:50:09 +00:00
|
|
|
sha256 = "0drnil8bzd4n4qb0wv3ilm9zvypxvwmzd65w96d6kfm7x6q65j68";
|
2014-06-14 20:45:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Library to send/receive data according to the Modbus protocol";
|
|
|
|
homepage = http://libmodbus.org/;
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
}
|