nixpkgs/pkgs/tools/networking/cjdns/default.nix

32 lines
829 B
Nix
Raw Normal View History

2014-10-19 20:05:05 +02:00
{ stdenv, fetchFromGitHub, nodejs, which, python27 }:
let
2014-10-19 20:05:05 +02:00
date = "20140928";
rev = "e2b673698e471dbc82b4e9dbc04cb9e16f1f06a6";
in
stdenv.mkDerivation {
name = "cjdns-${date}-${stdenv.lib.strings.substring 0 7 rev}";
2014-10-19 20:05:05 +02:00
src = fetchFromGitHub {
owner = "cjdelisle";
repo = "cjdns";
inherit rev;
2014-10-19 20:05:05 +02:00
sha256 = "0ql51845rni6678dda03zr18ary7xlqcs3khva9x80x815h1sy8v";
};
2014-10-19 20:05:05 +02:00
patches = [ ./rfc5952.patch ];
2014-10-19 20:05:05 +02:00
buildInputs = [ which python27 nodejs];
buildPhase = "bash do";
2014-10-19 20:05:05 +02:00
installPhase = "installBin cjdroute makekeys privatetopublic publictoip6";
2014-10-19 20:05:05 +02:00
meta = with stdenv.lib; {
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;
};
}