2014-10-19 20:05:05 +02:00
|
|
|
{ stdenv, fetchFromGitHub, nodejs, which, python27 }:
|
2013-06-20 20:52:58 +02:00
|
|
|
|
|
|
|
let
|
2014-10-19 20:05:05 +02:00
|
|
|
date = "20140928";
|
|
|
|
rev = "e2b673698e471dbc82b4e9dbc04cb9e16f1f06a6";
|
2013-06-20 20:52:58 +02:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2014-03-23 02:38:04 +01:00
|
|
|
name = "cjdns-${date}-${stdenv.lib.strings.substring 0 7 rev}";
|
2013-06-20 20:52:58 +02:00
|
|
|
|
2014-10-19 20:05:05 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cjdelisle";
|
|
|
|
repo = "cjdns";
|
2013-06-20 20:52:58 +02:00
|
|
|
inherit rev;
|
2014-10-19 20:05:05 +02:00
|
|
|
sha256 = "0ql51845rni6678dda03zr18ary7xlqcs3khva9x80x815h1sy8v";
|
2013-06-20 20:52:58 +02:00
|
|
|
};
|
|
|
|
|
2014-10-19 20:05:05 +02:00
|
|
|
patches = [ ./rfc5952.patch ];
|
2013-06-20 20:52:58 +02:00
|
|
|
|
2014-10-19 20:05:05 +02:00
|
|
|
buildInputs = [ which python27 nodejs];
|
2014-08-31 21:44:42 +02:00
|
|
|
|
|
|
|
buildPhase = "bash do";
|
2014-10-19 20:05:05 +02:00
|
|
|
installPhase = "installBin cjdroute makekeys privatetopublic publictoip6";
|
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;
|
|
|
|
maintainers = with maintainers; [ viric emery ];
|
|
|
|
platforms = platforms.unix;
|
2013-06-20 20:52:58 +02:00
|
|
|
};
|
|
|
|
}
|