mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
54 lines
1.3 KiB
Nix
54 lines
1.3 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, nixosTests
|
|
, rustPlatform
|
|
, hostPlatform
|
|
, installShellFiles
|
|
, cmake
|
|
, libsodium
|
|
, pkg-config
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rosenpass";
|
|
version = "0.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-t5AeJqeV16KCUoBm1GUzj/U6q382CRCR/XG6B2MiBU4=";
|
|
};
|
|
|
|
cargoHash = "sha256-caYJP3SNpZxtV9y3D62CuzJ5RjMoq98D9W0Fms5E3Nc=";
|
|
|
|
nativeBuildInputs = [
|
|
cmake # for oqs build in the oqs-sys crate
|
|
pkg-config
|
|
rustPlatform.bindgenHook # for C-bindings in the crypto libs
|
|
installShellFiles
|
|
];
|
|
|
|
buildInputs = [ libsodium ];
|
|
|
|
# nix defaults to building for aarch64 _without_ the armv8-a
|
|
# crypto extensions, but liboqs depends on these
|
|
preBuild = lib.optionalString hostPlatform.isAarch64 ''
|
|
NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -march=armv8-a+crypto"
|
|
'';
|
|
|
|
postInstall = ''
|
|
installManPage doc/rosenpass.1
|
|
'';
|
|
|
|
passthru.tests.rosenpass = nixosTests.rosenpass;
|
|
|
|
meta = with lib; {
|
|
description = "Build post-quantum-secure VPNs with WireGuard";
|
|
homepage = "https://rosenpass.eu/";
|
|
license = with licenses; [ mit /* or */ asl20 ];
|
|
maintainers = with maintainers; [ wucke13 ];
|
|
platforms = [ "aarch64-darwin" "aarch64-linux" "x86_64-darwin" "x86_64-linux" ];
|
|
mainProgram = "rosenpass";
|
|
};
|
|
}
|