about summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p/lokinet
diff options
context:
space:
mode:
authorwyndon <wyndon@proton.me>2022-11-15 14:42:29 +0100
committerRick van Schijndel <Mindavi@users.noreply.github.com>2022-11-17 19:11:47 +0100
commit4c233af423f85f7e3ae72ea3ab14b84ff11152ac (patch)
tree642d58f6ae41fcaaee1d15d90e7cc1fa4785bcab /pkgs/applications/networking/p2p/lokinet
parent6aa9413328297c0b283a856025201e3a3c65fd6f (diff)
lokinet: 0.9.9 -> 0.9.10
Diffstat (limited to 'pkgs/applications/networking/p2p/lokinet')
-rw-r--r--pkgs/applications/networking/p2p/lokinet/default.nix14
1 files changed, 4 insertions, 10 deletions
diff --git a/pkgs/applications/networking/p2p/lokinet/default.nix b/pkgs/applications/networking/p2p/lokinet/default.nix
index e3e2c8e588313..9b1421efa88a9 100644
--- a/pkgs/applications/networking/p2p/lokinet/default.nix
+++ b/pkgs/applications/networking/p2p/lokinet/default.nix
@@ -7,6 +7,7 @@
 , libuv
 , nlohmann_json
 , pkg-config
+, spdlog
 , sqlite
 , systemd
 , unbound
@@ -15,14 +16,14 @@
 
 stdenv.mkDerivation rec {
   pname = "lokinet";
-  version = "0.9.9";
+  version = "0.9.10";
 
   src = fetchFromGitHub {
     owner = "oxen-io";
     repo = "lokinet";
     rev = "v${version}";
     fetchSubmodules = true;
-    sha256 = "sha256-AaGsRg9S9Cng9emI/mN09QSOIRbE+x3916clWAwLnRs=";
+    sha256 = "sha256-dLkIFp1yz5MgUDxYQHN4zv2mexEb4GfkxlTOZyECsew=";
   };
 
   nativeBuildInputs = [
@@ -35,6 +36,7 @@ stdenv.mkDerivation rec {
     libuv
     libsodium
     nlohmann_json
+    spdlog
     sqlite
     systemd
     unbound
@@ -47,14 +49,6 @@ stdenv.mkDerivation rec {
     "-DWITH_SETCAP=OFF"
   ];
 
-  # copy bootstrap files
-  # see https://github.com/oxen-io/lokinet/issues/1765#issuecomment-938208774
-  postInstall = ''
-    mkdir -p $out/share/testnet
-    cp $src/contrib/bootstrap/mainnet.signed $out/share/bootstrap.signed
-    cp $src/contrib/bootstrap/testnet.signed $out/share/testnet/bootstrap.signed
-  '';
-
   meta = with lib; {
     description = "Anonymous, decentralized and IP based overlay network for the internet";
     homepage = "https://lokinet.org/";