at 18.03-beta 34 lines 1.2 kB view raw
1{ stdenv, fetchurl, pkgconfig, cmake, libuuid }: 2 3with stdenv.lib; 4stdenv.mkDerivation rec{ 5 6 name = "biblesync-${version}"; 7 version = "1.1.2"; 8 9 src = fetchurl{ 10 url = "mirror://sourceforge/project/gnomesword/BibleSync/1.1.2/${name}.tar.gz"; 11 sha256 = "0190q2da0ppif2242lahl8xfz01n9sijy60aq1a0545qcp0ilvl8"; 12 }; 13 14 nativeBuildInputs = [ pkgconfig ]; 15 buildInputs = [ cmake libuuid ]; 16 17 meta = { 18 homepage = http://www.crosswire.org/wiki/BibleSync; 19 description = "A multicast protocol to Bible software shared conavigation"; 20 longDescription = '' 21 BibleSync is a multicast protocol to support Bible software 22 shared co-navigation. It uses LAN multicast in either a 23 personal/small team mutual navigation motif or in a classroom 24 environment where there are Speakers plus the Audience. The 25 library implementing the protocol is a single C++ class 26 providing a complete yet minimal public interface to support 27 mode setting, setup for packet reception, transmit on local 28 navigation, and handling of incoming packets. 29 ''; 30 license = licenses.publicDomain; 31 maintainers = [ maintainers.AndersonTorres ]; 32 platforms = stdenv.lib.platforms.linux; 33 }; 34}