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