nixpkgs-suyu/pkgs/tools/security/arti/default.nix
2022-10-06 04:20:00 +00:00

43 lines
1.1 KiB
Nix

{ lib
, stdenv
, rustPlatform
, fetchFromGitLab
, pkg-config
, sqlite
, openssl
, CoreServices
}:
rustPlatform.buildRustPackage rec {
pname = "arti";
version = "1.0.1";
src = fetchFromGitLab {
domain = "gitlab.torproject.org";
group = "tpo";
owner = "core";
repo = "arti";
rev = "arti-v${version}";
sha256 = "sha256-zzBfRZEwLNCYzcdOfeQ462r1kU22zmY0lvrPDJ5F4nE=";
};
cargoSha256 = "sha256-DpdnXmzs8oHLQ1aecrBduW0E08xtU6W4DGL+20Gz1+I=";
nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];
buildInputs = [ sqlite ]
++ lib.optionals stdenv.isLinux [ openssl ]
++ lib.optionals stdenv.isDarwin [ CoreServices ];
cargoBuildFlags = [ "--package" "arti" ];
cargoTestFlags = [ "--package" "arti" ];
meta = with lib; {
description = "An implementation of Tor in Rust";
homepage = "https://gitlab.torproject.org/tpo/core/arti";
changelog = "https://gitlab.torproject.org/tpo/core/arti/-/raw/${src.rev}/CHANGELOG.md";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ marsam ];
};
}