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