nixpkgs/pkgs/tools/networking/cjdns/default.nix
Emery Hemingway 2b6dcdfcd0 Rename 'emery' maintainer handle to 'ehmry', fixes #11493
Communication happens on Github so names should be consistent.
2015-12-05 23:06:20 +01:00

42 lines
1.2 KiB
Nix

{ stdenv, fetchFromGitHub, nodejs, which, python27, utillinux }:
let
version = "16"; # see ${src}/util/version/Version.h
date = "20150509";
in
stdenv.mkDerivation {
name = "cjdns-${version}-${date}";
src = fetchFromGitHub {
owner = "cjdelisle";
repo = "cjdns";
rev = "a05ade40dc31caebaf3aa770aac3ab2ecb02d867";
sha256 = "07vwsw5d0sdxypl187cyzzdrv0chf4yyjxcymf847afkfr249n29";
};
buildInputs = [ which python27 nodejs ] ++
# for flock
stdenv.lib.optional stdenv.isLinux [ utillinux ];
buildPhase =
stdenv.lib.optionalString stdenv.isArm "Seccomp_NO=1 "
+ "bash do";
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
cp -R contrib tools node_build node_modules $out/share/cjdns/
'';
meta = with stdenv.lib; {
homepage = https://github.com/cjdelisle/cjdns;
description = "Encrypted networking for regular people";
license = licenses.gpl3;
maintainers = with maintainers; [ viric ehmry ];
platforms = platforms.unix;
};
}