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