mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 18:03:59 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
58 lines
1.4 KiB
Nix
58 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
tor,
|
|
firejail,
|
|
iptables,
|
|
makeWrapper,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "orjail";
|
|
version = "1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "06bwqb3l7syy4c1d8xynxwakmdxvm3qfm8r834nidsknvpdckd9z";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
postPatch = ''
|
|
patchShebangs make-helper.bsh
|
|
mkdir bin
|
|
mv usr/sbin/orjail bin/orjail
|
|
rm -r usr
|
|
'';
|
|
|
|
makeFlags = [
|
|
"DESTDIR=${placeholder "out"}"
|
|
];
|
|
|
|
postInstall = ''
|
|
# Specify binary paths: tor, firejail, iptables
|
|
# mktemp fails with /tmp path prefix, will work without it anyway
|
|
# https://github.com/orjail/orjail/issues/78
|
|
# firejail will fail reading /etc/hosts, therefore remove --hostname arg
|
|
# https://github.com/netblue30/firejail/issues/2758
|
|
substituteInPlace $out/bin/orjail \
|
|
--replace ''$'TORBIN=\n' ''$'TORBIN=${tor}/bin/tor\n' \
|
|
--replace ''$'FIREJAILBIN=\n' ''$'FIREJAILBIN=${firejail}/bin/firejail\n' \
|
|
--replace 'iptables -' '${iptables}/bin/iptables -' \
|
|
--replace 'mktemp /tmp/' 'mktemp ' \
|
|
--replace '--hostname=host ' ""
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Force programs to exclusively use tor network";
|
|
mainProgram = "orjail";
|
|
homepage = "https://github.com/orjail/orjail";
|
|
license = licenses.wtfpl;
|
|
maintainers = with maintainers; [ onny ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|