mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
7bd64e3dee
.. and switch to fetchFromGitHub to avoid future hash changes.
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, nodejs, which, python27, utillinux }:
|
|
|
|
let version = "20"; in
|
|
stdenv.mkDerivation {
|
|
name = "cjdns-"+version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cjdelisle";
|
|
repo = "cjdns";
|
|
rev = "cjdns-v${version}";
|
|
sha256 = "0gqcspiz1n0j711vwq807cy456dkcf03r376l04qc92173g2fzrx";
|
|
};
|
|
|
|
buildInputs = [ which python27 nodejs ] ++
|
|
# for flock
|
|
stdenv.lib.optional stdenv.isLinux utillinux;
|
|
|
|
buildPhase =
|
|
stdenv.lib.optionalString stdenv.isArm "Seccomp_NO=1 "
|
|
+ "bash do";
|
|
installPhase = ''
|
|
install -Dt "$out/bin/" 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; [ ehmry ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|