summary refs log tree commit diff
path: root/pkgs/development/libraries/biblesync
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@gmail.com>2015-08-15 22:36:44 -0300
committerAndersonTorres <torres.anderson.85@gmail.com>2015-08-15 22:36:44 -0300
commit0935ef2913542cf843064f6b690a740bcd6db08f (patch)
treea5813e354ef9f8abea7e24475ade9b92ab8d0054 /pkgs/development/libraries/biblesync
parent923006c5f1f4833cddc87feb07343a48a478689f (diff)
downloadnixlib-0935ef2913542cf843064f6b690a740bcd6db08f.tar
nixlib-0935ef2913542cf843064f6b690a740bcd6db08f.tar.gz
nixlib-0935ef2913542cf843064f6b690a740bcd6db08f.tar.bz2
nixlib-0935ef2913542cf843064f6b690a740bcd6db08f.tar.lz
nixlib-0935ef2913542cf843064f6b690a740bcd6db08f.tar.xz
nixlib-0935ef2913542cf843064f6b690a740bcd6db08f.tar.zst
nixlib-0935ef2913542cf843064f6b690a740bcd6db08f.zip
BibleSync: init at 1.1.2
Biblesync is a dependency of new Xiphos.
Diffstat (limited to 'pkgs/development/libraries/biblesync')
-rw-r--r--pkgs/development/libraries/biblesync/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/development/libraries/biblesync/default.nix b/pkgs/development/libraries/biblesync/default.nix
new file mode 100644
index 000000000000..4b7be5ca3d4a
--- /dev/null
+++ b/pkgs/development/libraries/biblesync/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchurl, pkgconfig, cmake, libuuid }:
+
+with stdenv.lib;
+stdenv.mkDerivation rec{
+
+  name = "biblesync-${version}";
+  version = "1.1.2";
+
+  src = fetchurl{
+    url = "http://downloads.sourceforge.net/project/gnomesword/BibleSync/1.1.2/${name}.tar.gz";
+    sha256 = "0190q2da0ppif2242lahl8xfz01n9sijy60aq1a0545qcp0ilvl8";
+  };
+
+  buildInputs = [ pkgconfig cmake libuuid ];
+
+  meta = {
+    homepage = http://www.crosswire.org/wiki/BibleSync;
+    description = "A multicast protocol to Bible software shared conavigation";
+    longDescription = ''
+      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 ]; 
+  };
+}