2021-12-06 09:26:58 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, llvmPackages
|
|
|
|
, sqlite
|
|
|
|
, installShellFiles
|
|
|
|
, Security
|
|
|
|
, libiconv
|
|
|
|
, innernet
|
2022-04-20 14:40:48 +00:00
|
|
|
, testers
|
2021-12-06 09:26:58 +00:00
|
|
|
}:
|
2021-04-19 02:33:03 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "innernet";
|
2022-09-24 15:03:18 +00:00
|
|
|
version = "1.5.5";
|
2021-04-19 02:33:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tonarino";
|
2021-11-11 20:41:53 +00:00
|
|
|
repo = "innernet";
|
2021-04-19 02:33:03 +00:00
|
|
|
rev = "v${version}";
|
2022-09-24 15:03:18 +00:00
|
|
|
sha256 = "sha256-jUL7/jHjfgpLg6728JQETbBcC2Q3G8d31oiwhkS+FD0=";
|
2021-04-19 02:33:03 +00:00
|
|
|
};
|
2022-09-24 15:03:18 +00:00
|
|
|
cargoSha256 = "sha256-qQ6yRI0rNxV/TRZHCR69h6kx6L2Wp75ziw+B2P8LZmE=";
|
2021-04-19 02:33:03 +00:00
|
|
|
|
2021-04-26 18:04:25 +00:00
|
|
|
nativeBuildInputs = with llvmPackages; [
|
|
|
|
llvm
|
|
|
|
clang
|
|
|
|
installShellFiles
|
|
|
|
];
|
2021-04-29 20:56:38 +00:00
|
|
|
buildInputs = [ sqlite ] ++ lib.optionals stdenv.isDarwin [ Security libiconv ];
|
2021-04-26 18:04:25 +00:00
|
|
|
|
llvmPackages: Multuple outputs for everythting
Also begin to start work on cross compilation, though that will have to
be finished later.
The patches are based on the first version of
https://reviews.llvm.org/D99484. It's very annoying to do the
back-porting but the review has uncovered nothing super major so I'm
fine sticking with what I've got.
Beyond making the outputs work, I also strove to re-sync the packages,
as they have been drifting pointlessly apart for some time.
----
Other misc notes, highly incomplete
- lvm-config-native and llvm-config are put in `dev` because they are
tools just for build time.
- Clang no longer has an lld dep. That was introduced in
db29857eb391ed002046090851a44c452b80bdbd, but if clang needs help
finding lld when it is used we should just pass it flags / put in the
resource dir. Providing it at build time increases critical path
length for no good reason.
----
A note on `nativeCC`:
`stdenv` takes tools from the previous stage, so:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)`
while:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)`
3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
2020-10-15 08:23:57 +00:00
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
|
2021-04-26 18:04:25 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
installManPage doc/innernet-server.8.gz
|
|
|
|
installManPage doc/innernet.8.gz
|
2021-06-01 18:38:30 +00:00
|
|
|
installShellCompletion doc/innernet.completions.{bash,fish,zsh}
|
|
|
|
installShellCompletion doc/innernet-server.completions.{bash,fish,zsh}
|
2022-05-23 15:16:50 +00:00
|
|
|
'' + (lib.optionalString stdenv.isLinux ''
|
2022-05-23 15:00:41 +00:00
|
|
|
find . -regex '.*\.\(target\|service\)' | xargs install -Dt $out/lib/systemd/system
|
|
|
|
find $out/lib/systemd/system -type f | xargs sed -i "s|/usr/bin/innernet|$out/bin/innernet|"
|
2022-05-23 15:16:50 +00:00
|
|
|
'');
|
2021-04-26 18:04:25 +00:00
|
|
|
|
2021-12-06 09:26:58 +00:00
|
|
|
passthru.tests = {
|
2022-04-20 14:40:48 +00:00
|
|
|
serverVersion = testers.testVersion { package = innernet; command = "innernet-server --version"; };
|
|
|
|
version = testers.testVersion { package = innernet; command = "innernet --version"; };
|
2021-12-06 09:26:58 +00:00
|
|
|
};
|
2021-04-19 02:33:03 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A private network system that uses WireGuard under the hood";
|
|
|
|
homepage = "https://github.com/tonarino/innernet";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ tomberek _0x4A6F ];
|
|
|
|
};
|
|
|
|
}
|