4acb425c39
cjdns: https://hydra.nixos.org/build/61134279 jonprl: https://hydra.nixos.org/build/61123711 mate.libmatemixer: https://hydra.nixos.org/build/61126968 dirac: https://hydra.nixos.org/build/61132432 idnkit: https://hydra.nixos.org/build/61123544 trousers: https://hydra.nixos.org/build/61109766 packetdrill: https://hydra.nixos.org/build/61116190 osm2pgsql: https://hydra.nixos.org/build/61118017 nawk: https://hydra.nixos.org/build/61139000
37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ stdenv, fetchurl, fetchpatch, nodejs, which, python27, utillinux }:
|
|
|
|
let version = "20"; in
|
|
stdenv.mkDerivation {
|
|
name = "cjdns-"+version;
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/cjdelisle/cjdns/archive/cjdns-v${version}.tar.gz";
|
|
sha256 = "1dyqxi9l2pmrgm16a161909rg3vfzvib40frr7p6ddpk8yfh5888";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|