nixpkgs/pkgs/tools/security/sequoia-chameleon-gnupg/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
946 B
Nix
Raw Normal View History

2022-12-20 11:04:43 +00:00
{ lib
, stdenv
2022-12-20 11:04:43 +00:00
, rustPlatform
, fetchFromGitLab
, pkg-config
, nettle
, openssl
, darwin
2022-12-20 11:04:43 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "sequoia-chameleon-gnupg";
version = "0.2.0";
2022-12-20 11:04:43 +00:00
src = fetchFromGitLab {
owner = "sequoia-pgp";
repo = pname;
rev = "v${version}";
hash = "sha256-8aKT39gq6o7dnbhKbDxewd4R2e2IsbYU8vaDwYemes8=";
2022-12-20 11:04:43 +00:00
};
cargoHash = "sha256-Z6cXCHLrK+BcIeVCKH2l8n9SivZsZPhXGhaMObn6rjo=";
2022-12-20 11:04:43 +00:00
nativeBuildInputs = [
rustPlatform.bindgenHook
pkg-config
];
buildInputs = [
nettle
openssl
] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
];
2022-12-20 11:04:43 +00:00
# gpgconf: error creating socket directory
doCheck = false;
meta = with lib; {
description = "Sequoia's reimplementation of the GnuPG interface";
homepage = "https://gitlab.com/sequoia-pgp/sequoia-chameleon-gnupg";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ nickcao ];
};
}