summary refs log tree commit diff
path: root/pkgs/development/libraries/biblesync
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2020-04-14 13:06:09 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2020-04-14 20:39:13 -0300
commit88978483b1b05b639c89232146806bbc14550ced (patch)
tree80f6b2cdbb8756644b0d8de39fc2d9a4f1307816 /pkgs/development/libraries/biblesync
parent3759b67af2dd08a94cdce98abb423c649caaa8a1 (diff)
downloadnixpkgs-88978483b1b05b639c89232146806bbc14550ced.tar
nixpkgs-88978483b1b05b639c89232146806bbc14550ced.tar.gz
nixpkgs-88978483b1b05b639c89232146806bbc14550ced.tar.bz2
nixpkgs-88978483b1b05b639c89232146806bbc14550ced.tar.lz
nixpkgs-88978483b1b05b639c89232146806bbc14550ced.tar.xz
nixpkgs-88978483b1b05b639c89232146806bbc14550ced.tar.zst
nixpkgs-88978483b1b05b639c89232146806bbc14550ced.zip
biblesync: 1.1.2 -> 2.0.1
Diffstat (limited to 'pkgs/development/libraries/biblesync')
-rw-r--r--pkgs/development/libraries/biblesync/default.nix36
1 files changed, 18 insertions, 18 deletions
diff --git a/pkgs/development/libraries/biblesync/default.nix b/pkgs/development/libraries/biblesync/default.nix
index bc62f6d47ad..54a4fa7a686 100644
--- a/pkgs/development/libraries/biblesync/default.nix
+++ b/pkgs/development/libraries/biblesync/default.nix
@@ -1,30 +1,30 @@
-{ stdenv, fetchurl, pkgconfig, cmake, libuuid }:
+{ stdenv, fetchFromGitHub, pkgconfig, cmake, libuuid }:
 
-with stdenv.lib;
-stdenv.mkDerivation rec{
+stdenv.mkDerivation rec {
 
   pname = "biblesync";
-  version = "1.1.2";
+  version = "2.0.1";
 
-  src = fetchurl{
-    url = "mirror://sourceforge/project/gnomesword/BibleSync/1.1.2/${pname}-${version}.tar.gz";
-    sha256 = "0190q2da0ppif2242lahl8xfz01n9sijy60aq1a0545qcp0ilvl8";
+  src = fetchFromGitHub {
+    owner = "karlkleinpaste";
+    repo = "biblesync";
+    rev = version;
+    sha256 = "1baq2fwf6132i514xrvq05p2gy98mkg1rn5whf9q5k475q81nrlr";
   };
 
-  nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [ cmake libuuid ];
+  nativeBuildInputs = [ pkgconfig cmake ];
+  buildInputs = [ libuuid ];
 
-  meta = {
-    homepage = "http://www.crosswire.org/wiki/BibleSync";
+  meta = with stdenv.lib; {
+    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
+      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;