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