2014-10-25 13:51:47 +00:00
|
|
|
{ stdenv, fetchFromGitHub, nodejs, which, python27, utillinux }:
|
2013-06-20 18:52:58 +00:00
|
|
|
|
|
|
|
let
|
2015-03-21 14:11:12 +00:00
|
|
|
version = "16"; # see ${src}/util/version/Version.h
|
2015-05-09 20:22:58 +00:00
|
|
|
date = "20150509";
|
2013-06-20 18:52:58 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2014-11-21 23:04:53 +00:00
|
|
|
name = "cjdns-${version}-${date}";
|
2013-06-20 18:52:58 +00:00
|
|
|
|
2014-10-19 18:05:05 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cjdelisle";
|
|
|
|
repo = "cjdns";
|
2015-05-09 20:22:58 +00:00
|
|
|
rev = "a05ade40dc31caebaf3aa770aac3ab2ecb02d867";
|
|
|
|
sha256 = "07vwsw5d0sdxypl187cyzzdrv0chf4yyjxcymf847afkfr249n29";
|
2013-06-20 18:52:58 +00:00
|
|
|
};
|
|
|
|
|
2014-10-25 13:51:47 +00:00
|
|
|
buildInputs = [ which python27 nodejs ] ++
|
|
|
|
# for flock
|
|
|
|
stdenv.lib.optional stdenv.isLinux [ utillinux ];
|
2014-08-31 19:44:42 +00:00
|
|
|
|
2014-10-10 15:02:08 +00:00
|
|
|
buildPhase =
|
|
|
|
stdenv.lib.optionalString stdenv.isArm "Seccomp_NO=1 "
|
|
|
|
+ "bash do";
|
2014-10-25 13:51:47 +00:00
|
|
|
installPhase = ''
|
|
|
|
installBin 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
|
2015-01-30 08:25:21 +00:00
|
|
|
cp -R contrib tools node_build node_modules $out/share/cjdns/
|
2014-10-25 13:51:47 +00:00
|
|
|
'';
|
2013-06-20 18:52:58 +00:00
|
|
|
|
2014-10-19 18:05:05 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-06-20 18:52:58 +00:00
|
|
|
homepage = https://github.com/cjdelisle/cjdns;
|
|
|
|
description = "Encrypted networking for regular people";
|
2014-10-19 18:05:05 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ viric emery ];
|
|
|
|
platforms = platforms.unix;
|
2013-06-20 18:52:58 +00:00
|
|
|
};
|
|
|
|
}
|