2022-11-05 15:15:21 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, nodejs
|
|
|
|
, which
|
|
|
|
, python39
|
|
|
|
, libuv
|
|
|
|
, util-linux
|
|
|
|
, nixosTests
|
|
|
|
}:
|
2013-06-20 18:52:58 +00:00
|
|
|
|
2022-11-05 15:15:21 +00:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2020-06-25 05:50:35 +00:00
|
|
|
pname = "cjdns";
|
2022-11-05 15:15:21 +00:00
|
|
|
version = "21.4";
|
2013-06-20 18:52:58 +00:00
|
|
|
|
2017-09-14 09:16:22 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cjdelisle";
|
|
|
|
repo = "cjdns";
|
|
|
|
rev = "cjdns-v${version}";
|
2022-11-05 15:15:21 +00:00
|
|
|
sha256 = "sha256-vI3uHZwmbFqxGasKqgCl0PLEEO8RNEhwkn5ZA8K7bxU=";
|
2013-06-20 18:52:58 +00:00
|
|
|
};
|
|
|
|
|
2022-11-05 15:15:21 +00:00
|
|
|
cargoSha256 = "sha256-x3LxGOhGXrheqdke0eYiQVo/IqgWgcDrDNupdLjRPjA=";
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
which
|
|
|
|
python39
|
|
|
|
nodejs
|
|
|
|
] ++
|
2014-10-25 13:51:47 +00:00
|
|
|
# for flock
|
2021-01-15 09:19:50 +00:00
|
|
|
lib.optional stdenv.isLinux util-linux;
|
2014-08-31 19:44:42 +00:00
|
|
|
|
2022-11-05 15:15:21 +00:00
|
|
|
buildInputs = [
|
|
|
|
libuv
|
|
|
|
];
|
|
|
|
|
2022-04-16 04:47:01 +00:00
|
|
|
NIX_CFLAGS_COMPILE = [
|
|
|
|
"-O2"
|
|
|
|
"-Wno-error=array-bounds"
|
|
|
|
"-Wno-error=stringop-overflow"
|
|
|
|
"-Wno-error=stringop-truncation"
|
2022-04-17 00:57:03 +00:00
|
|
|
] ++ lib.optionals (stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "11") [
|
|
|
|
"-Wno-error=stringop-overread"
|
2022-04-16 04:47:01 +00:00
|
|
|
];
|
|
|
|
|
2020-04-16 07:02:32 +00:00
|
|
|
passthru.tests.basic = nixosTests.cjdns;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/cjdelisle/cjdns";
|
2013-06-20 18:52:58 +00:00
|
|
|
description = "Encrypted networking for regular people";
|
2020-12-27 18:49:30 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2016-04-08 13:52:08 +00:00
|
|
|
maintainers = with maintainers; [ ehmry ];
|
2017-09-22 18:03:17 +00:00
|
|
|
platforms = platforms.linux;
|
2013-06-20 18:52:58 +00:00
|
|
|
};
|
|
|
|
}
|