summary refs log blame commit diff
path: root/pkgs/tools/networking/cjdns/default.nix
blob: 13388d3377913f52d730ce049ad0d9b434a54d59 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                            
 


                         
 



                              
                                                                    

    

                                            
                                                 
 
                                                
              
                                                              
                
                   
                                                                         




                                                       
                                                                 
     
 

                                          
                           
                                                    
                                                            
                            
                                              
                                

    
{ stdenv, fetchFromGitHub, nodejs, which, python27, utillinux, nixosTests }:

stdenv.mkDerivation rec {
  pname = "cjdns";
  version = "20.7";

  src = fetchFromGitHub {
    owner = "cjdelisle";
    repo = "cjdns";
    rev = "cjdns-v${version}";
    sha256 = "09gpqpzc00pp3cj7lyq9876p7is4bcndpdi5knqbv824vk4bj3k0";
  };

  buildInputs = [ which python27 nodejs ] ++
    # for flock
    stdenv.lib.optional stdenv.isLinux utillinux;

  CFLAGS = "-O2 -Wno-error=stringop-truncation";
  buildPhase =
    stdenv.lib.optionalString stdenv.isAarch32 "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/
  '';

  passthru.tests.basic = nixosTests.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;
  };
}