mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 14:03:29 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
77 lines
1.5 KiB
Nix
77 lines
1.5 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, cmake
|
|
, libevent
|
|
, libsodium
|
|
, libuv
|
|
, nlohmann_json
|
|
, pkg-config
|
|
, spdlog
|
|
, fmt_9
|
|
, sqlite
|
|
, systemd
|
|
, unbound
|
|
, zeromq
|
|
}:
|
|
let
|
|
# Upstream has received reports of incompatibilities with fmt, and other
|
|
# dependencies, see: https://github.com/oxen-io/lokinet/issues/2200.
|
|
spdlog' = spdlog.override {
|
|
fmt = fmt_9;
|
|
};
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "lokinet";
|
|
version = "0.9.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "oxen-io";
|
|
repo = "lokinet";
|
|
rev = "refs/tags/v${version}";
|
|
fetchSubmodules = true;
|
|
hash = "sha256-aVFLDGTbRUOw2XWDpl+ojwHBG7c0miGeoKMLwMpqVtg=";
|
|
};
|
|
|
|
patches = [
|
|
# Fix gcc-13 compatibility:
|
|
(fetchpatch {
|
|
name = "gcc-13.patch";
|
|
url = "https://github.com/oxen-io/lokinet/commit/89c5c73be48788ba14a55cb6d82d57208b487eaf.patch";
|
|
hash = "sha256-yCy4WXs6p67TMe4uPNAuQyJvtP3IbpJS81AeomNu9lU=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libevent
|
|
libuv
|
|
libsodium
|
|
nlohmann_json
|
|
spdlog'
|
|
sqlite
|
|
systemd
|
|
unbound
|
|
zeromq
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DGIT_VERSION=v${version}"
|
|
"-DWITH_BOOTSTRAP=OFF" # we provide bootstrap files manually
|
|
"-DWITH_SETCAP=OFF"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Anonymous, decentralized and IP based overlay network for the internet";
|
|
homepage = "https://lokinet.org/";
|
|
changelog = "https://github.com/oxen-io/lokinet/releases/tag/v${version}";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ wyndon ];
|
|
};
|
|
}
|