nixpkgs/pkgs/tools/networking/cjdns/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, nodejs, which, python3, util-linux, nixosTests }:
2020-06-25 06:50:35 +01:00
stdenv.mkDerivation rec {
pname = "cjdns";
2020-12-27 18:49:30 +00:00
version = "21.1";
src = fetchFromGitHub {
owner = "cjdelisle";
repo = "cjdns";
rev = "cjdns-v${version}";
2020-12-27 18:49:30 +00:00
sha256 = "NOmk+vMZ8i0E2MjrUzksk+tkJ9XVVNEXlE5OOTNa+Y0=";
};
buildInputs = [ which python3 nodejs ] ++
# for flock
2021-01-15 09:19:50 +00:00
lib.optional stdenv.isLinux util-linux;
NIX_CFLAGS_COMPILE = [
"-O2"
"-Wno-error=array-bounds"
"-Wno-error=stringop-overflow"
"-Wno-error=stringop-truncation"
] ++ lib.optionals (stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "11") [
"-Wno-error=stringop-overread"
];
buildPhase =
2021-01-15 09:19:50 +00:00
lib.optionalString stdenv.isAarch32 "Seccomp_NO=1 "
+ "bash do";
installPhase = ''
install -Dt "$out/bin/" cjdroute makekeys privatetopublic publictoip6
mkdir -p $out/share/cjdns
cp -R tools node_build node_modules $out/share/cjdns/
'';
2020-04-16 08:02:32 +01:00
passthru.tests.basic = nixosTests.cjdns;
meta = with lib; {
homepage = "https://github.com/cjdelisle/cjdns";
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 ];
platforms = platforms.linux;
};
}