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

42 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, nodejs, which, python27, util-linux, nixosTests }:
2020-06-25 05:50:35 +00: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 python27 nodejs ] ++
# for flock
2021-01-15 09:19:50 +00:00
lib.optional stdenv.isLinux util-linux;
2019-11-03 11:58:01 +00:00
CFLAGS = "-O2 -Wno-error=stringop-truncation";
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
sed -i 's,/usr/bin/env node,'$(type -P node), \
$(find contrib -name "*.js")
sed -i 's,/usr/bin/env python,'$(type -P python), \
$(find contrib -type f)
mkdir -p $out/share/cjdns
cp -R contrib tools node_build node_modules $out/share/cjdns/
'';
2020-04-16 07:02:32 +00: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 13:52:08 +00:00
maintainers = with maintainers; [ ehmry ];
platforms = platforms.linux;
};
}