![Profpatsch](/assets/img/avatar_default.png)
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, nodejs, which, python27, util-linux, nixosTests }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cjdns";
|
|
version = "21.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cjdelisle";
|
|
repo = "cjdns";
|
|
rev = "cjdns-v${version}";
|
|
sha256 = "NOmk+vMZ8i0E2MjrUzksk+tkJ9XVVNEXlE5OOTNa+Y0=";
|
|
};
|
|
|
|
buildInputs = [ which python27 nodejs ] ++
|
|
# for flock
|
|
stdenv.lib.optional stdenv.isLinux util-linux;
|
|
|
|
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 lib; {
|
|
homepage = "https://github.com/cjdelisle/cjdns";
|
|
description = "Encrypted networking for regular people";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ ehmry ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|