nixpkgs/pkgs/development/libraries/libmodbus/default.nix
Ryan Mulligan b6b361b724 libmodbus: 3.0.6 -> 3.1.4
Semi-automatic update. These checks were performed:

- built on NixOS
- found 3.1.4 with grep in /nix/store/cllrhccg4a6va2ac33y7r50bz7ihiyf1-libmodbus-3.1.4
- found 3.1.4 in filename of file in /nix/store/cllrhccg4a6va2ac33y7r50bz7ihiyf1-libmodbus-3.1.4

cc "@bjornfor"
2018-02-26 20:50:09 -08:00

19 lines
498 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libmodbus-3.1.4";
src = fetchurl {
url = "http://libmodbus.org/releases/${name}.tar.gz";
sha256 = "0drnil8bzd4n4qb0wv3ilm9zvypxvwmzd65w96d6kfm7x6q65j68";
};
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 ];
};
}