nixpkgs/pkgs/development/libraries/biblesync/default.nix

35 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, cmake, libuuid }:
2020-04-14 16:06:09 +00:00
stdenv.mkDerivation rec {
pname = "biblesync";
2020-05-25 08:31:33 +00:00
version = "2.1.0";
2020-04-14 16:06:09 +00:00
src = fetchFromGitHub {
owner = "karlkleinpaste";
repo = "biblesync";
rev = version;
2020-05-25 08:31:33 +00:00
sha256 = "0prmd12jq2cjdhsph5v89y38j7hhd51dr3r1hivgkhczr3m5hf4s";
};
nativeBuildInputs = [ pkg-config cmake ];
2020-04-14 16:06:09 +00:00
buildInputs = [ libuuid ];
meta = with lib; {
2020-05-25 09:20:00 +00:00
homepage = "https://wiki.crosswire.org/BibleSync";
description = "A multicast protocol to Bible software shared conavigation";
longDescription = ''
2020-04-14 16:06:09 +00:00
BibleSync is a multicast protocol to support Bible software shared
co-navigation. It uses LAN multicast in either a personal/small team
mutual navigation motif or in a classroom environment where there are
Speakers plus the Audience. The library implementing the protocol is a
single C++ class providing a complete yet minimal public interface to
support mode setting, setup for packet reception, transmit on local
navigation, and handling of incoming packets.
'';
license = licenses.publicDomain;
maintainers = [ maintainers.AndersonTorres ];
platforms = lib.platforms.linux;
};
}