mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
b6b361b724
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"
19 lines
498 B
Nix
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 ];
|
|
};
|
|
}
|