at v192 18 lines 498 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "libmodbus-3.0.6"; 5 6 src = fetchurl { 7 url = "http://libmodbus.org/releases/${name}.tar.gz"; 8 sha256 = "1dkijjv3dq0c5vc5z5f1awm8dlssbwg6ivsnvih22pkm1zqn6v84"; 9 }; 10 11 meta = with stdenv.lib; { 12 description = "Library to send/receive data according to the Modbus protocol"; 13 homepage = http://libmodbus.org/; 14 license = licenses.lgpl21Plus; 15 platforms = platforms.linux; 16 maintainers = [ maintainers.bjornfor ]; 17 }; 18}