This reverts commit 65a333600d5c88a98d674f637d092807cfc12253. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
79 lines
1.8 KiB
Nix
79 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
versionCheckHook,
|
|
protobuf,
|
|
protoc-gen-go,
|
|
protoc-gen-go-grpc,
|
|
nix-update-script,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "cunicu";
|
|
version = "0.12.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cunicu";
|
|
repo = "cunicu";
|
|
rev = "v${version}";
|
|
hash = "sha256-1y9olRSPu2akvE728oXBr70Pt03xj65R2GaOlZ/7RTg=";
|
|
};
|
|
|
|
vendorHash = "sha256-yFpkYI6ue5LXwRCj4EqWDBaO3TYzZ3Ov/39PRQWMWzk=";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
protobuf
|
|
protoc-gen-go
|
|
protoc-gen-go-grpc
|
|
];
|
|
|
|
nativeInstallCheckInputs = [
|
|
versionCheckHook
|
|
];
|
|
|
|
env.CGO_ENABLED = 0;
|
|
|
|
# These packages contain networking dependent tests which fail in the sandbox
|
|
excludedPackages = [
|
|
"pkg/config"
|
|
"pkg/selfupdate"
|
|
"pkg/tty"
|
|
"scripts"
|
|
];
|
|
|
|
ldflags = [
|
|
"-X cunicu.li/cunicu/pkg/buildinfo.Version=${version}"
|
|
"-X cunicu.li/cunicu/pkg/buildinfo.BuiltBy=Nix"
|
|
];
|
|
|
|
doInstallCheck = true;
|
|
versionCheckProgramArg = "version";
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
preBuild = ''
|
|
go generate ./...
|
|
'';
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
$out/bin/cunicu docs --with-frontmatter
|
|
installManPage ./docs/usage/man/*.1
|
|
installShellCompletion --cmd cunicu \
|
|
--bash <($out/bin/cunicu completion bash) \
|
|
--zsh <($out/bin/cunicu completion zsh) \
|
|
--fish <($out/bin/cunicu completion fish)
|
|
'';
|
|
|
|
meta = {
|
|
description = "Zeroconf peer-to-peer mesh VPN using Wireguard® and Interactive Connectivity Establishment (ICE)";
|
|
homepage = "https://cunicu.li";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ stv0g ];
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "cunicu";
|
|
};
|
|
}
|