2017-09-14 11:16:22 +02:00
|
|
|
{ stdenv, fetchFromGitHub, nodejs, which, python27, utillinux }:
|
2013-06-20 20:52:58 +02:00
|
|
|
|
2018-02-20 21:19:06 +01:00
|
|
|
let version = "20.1"; in
|
2013-06-20 20:52:58 +02:00
|
|
|
stdenv.mkDerivation {
|
2016-04-08 15:52:08 +02:00
|
|
|
name = "cjdns-"+version;
|
2013-06-20 20:52:58 +02:00
|
|
|
|
2017-09-14 11:16:22 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cjdelisle";
|
|
|
|
repo = "cjdns";
|
|
|
|
rev = "cjdns-v${version}";
|
2018-02-20 21:19:06 +01:00
|
|
|
sha256 = "033q8av46y0q8vxyqvb4yjh1lz6a17mmk8lhdpwdcqnsws8xjjsw";
|
2013-06-20 20:52:58 +02:00
|
|
|
};
|
|
|
|
|
2014-10-25 15:51:47 +02:00
|
|
|
buildInputs = [ which python27 nodejs ] ++
|
|
|
|
# for flock
|
2015-12-05 13:59:05 +01:00
|
|
|
stdenv.lib.optional stdenv.isLinux utillinux;
|
2014-08-31 21:44:42 +02:00
|
|
|
|
2014-10-10 17:02:08 +02:00
|
|
|
buildPhase =
|
|
|
|
stdenv.lib.optionalString stdenv.isArm "Seccomp_NO=1 "
|
|
|
|
+ "bash do";
|
2014-10-25 15:51:47 +02:00
|
|
|
installPhase = ''
|
2015-12-05 13:59:05 +01:00
|
|
|
install -Dt "$out/bin/" cjdroute makekeys privatetopublic publictoip6
|
2014-10-25 15:51:47 +02:00
|
|
|
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
|
2015-01-30 09:25:21 +01:00
|
|
|
cp -R contrib tools node_build node_modules $out/share/cjdns/
|
2014-10-25 15:51:47 +02:00
|
|
|
'';
|
2013-06-20 20:52:58 +02:00
|
|
|
|
2014-10-19 20:05:05 +02:00
|
|
|
meta = with stdenv.lib; {
|
2013-06-20 20:52:58 +02:00
|
|
|
homepage = https://github.com/cjdelisle/cjdns;
|
|
|
|
description = "Encrypted networking for regular people";
|
2014-10-19 20:05:05 +02:00
|
|
|
license = licenses.gpl3;
|
2016-04-08 15:52:08 +02:00
|
|
|
maintainers = with maintainers; [ ehmry ];
|
2017-09-22 20:03:17 +02:00
|
|
|
platforms = platforms.linux;
|
2013-06-20 20:52:58 +02:00
|
|
|
};
|
|
|
|
}
|