2021-12-12 20:44:15 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, nodejs, which, python3, util-linux, nixosTests }:
|
2013-06-20 19:52:58 +01:00
|
|
|
|
2020-06-25 06:50:35 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "cjdns";
|
2020-12-27 18:49:30 +00:00
|
|
|
version = "21.1";
|
2013-06-20 19:52:58 +01:00
|
|
|
|
2017-09-14 10:16:22 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cjdelisle";
|
|
|
|
repo = "cjdns";
|
|
|
|
rev = "cjdns-v${version}";
|
2020-12-27 18:49:30 +00:00
|
|
|
sha256 = "NOmk+vMZ8i0E2MjrUzksk+tkJ9XVVNEXlE5OOTNa+Y0=";
|
2013-06-20 19:52:58 +01:00
|
|
|
};
|
|
|
|
|
2021-12-12 20:44:15 +00:00
|
|
|
buildInputs = [ which python3 nodejs ] ++
|
2014-10-25 14:51:47 +01:00
|
|
|
# for flock
|
2021-01-15 09:19:50 +00:00
|
|
|
lib.optional stdenv.isLinux util-linux;
|
2014-08-31 20:44:42 +01:00
|
|
|
|
2022-04-16 05:47:01 +01:00
|
|
|
NIX_CFLAGS_COMPILE = [
|
|
|
|
"-O2"
|
|
|
|
"-Wno-error=array-bounds"
|
|
|
|
"-Wno-error=stringop-overflow"
|
|
|
|
"-Wno-error=stringop-truncation"
|
2022-04-17 01:57:03 +01:00
|
|
|
] ++ lib.optionals (stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "11") [
|
|
|
|
"-Wno-error=stringop-overread"
|
2022-04-16 05:47:01 +01:00
|
|
|
];
|
|
|
|
|
2014-10-10 16:02:08 +01:00
|
|
|
buildPhase =
|
2021-01-15 09:19:50 +00:00
|
|
|
lib.optionalString stdenv.isAarch32 "Seccomp_NO=1 "
|
2014-10-10 16:02:08 +01:00
|
|
|
+ "bash do";
|
2014-10-25 14:51:47 +01:00
|
|
|
installPhase = ''
|
2015-12-05 12:59:05 +00:00
|
|
|
install -Dt "$out/bin/" cjdroute makekeys privatetopublic publictoip6
|
2014-10-25 14:51:47 +01:00
|
|
|
mkdir -p $out/share/cjdns
|
2021-12-12 20:44:15 +00:00
|
|
|
cp -R tools node_build node_modules $out/share/cjdns/
|
2014-10-25 14:51:47 +01:00
|
|
|
'';
|
2013-06-20 19:52:58 +01:00
|
|
|
|
2020-04-16 08:02:32 +01:00
|
|
|
passthru.tests.basic = nixosTests.cjdns;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/cjdelisle/cjdns";
|
2013-06-20 19:52:58 +01:00
|
|
|
description = "Encrypted networking for regular people";
|
2020-12-27 18:49:30 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2016-04-08 14:52:08 +01:00
|
|
|
maintainers = with maintainers; [ ehmry ];
|
2017-09-22 19:03:17 +01:00
|
|
|
platforms = platforms.linux;
|
2013-06-20 19:52:58 +01:00
|
|
|
};
|
|
|
|
}
|