2022-12-20 11:04:43 +00:00
|
|
|
{ lib
|
2023-02-04 03:48:51 +00:00
|
|
|
, stdenv
|
2022-12-20 11:04:43 +00:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitLab
|
|
|
|
, pkg-config
|
|
|
|
, nettle
|
2023-02-04 03:48:51 +00:00
|
|
|
, openssl
|
2023-07-23 06:34:43 +00:00
|
|
|
, sqlite
|
2023-02-04 03:48:51 +00:00
|
|
|
, darwin
|
2022-12-20 11:04:43 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "sequoia-chameleon-gnupg";
|
2023-11-22 14:53:44 +00:00
|
|
|
version = "unstable-2023-11-22";
|
2022-12-20 11:04:43 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "sequoia-pgp";
|
|
|
|
repo = pname;
|
2023-11-22 14:53:44 +00:00
|
|
|
rev = "fd9df5a4e1ec3c3ca986a1a25bacf13f024c934a";
|
|
|
|
hash = "sha256-OxWlkOQxuuCFyLMx+ucervyqIduUpyJ9lCGFQlfEUFc=";
|
2022-12-20 11:04:43 +00:00
|
|
|
};
|
|
|
|
|
2023-11-22 14:53:44 +00:00
|
|
|
cargoHash = "sha256-4+PA1kYJgn8yDAYr88DQYg6sdgSN3MWzKAUATW3VO6I=";
|
2022-12-20 11:04:43 +00:00
|
|
|
|
2023-02-04 03:48:51 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
rustPlatform.bindgenHook
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
nettle
|
|
|
|
openssl
|
2023-07-23 06:34:43 +00:00
|
|
|
sqlite
|
2023-02-04 03:48:51 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
darwin.apple_sdk.frameworks.Security
|
2023-11-22 14:53:44 +00:00
|
|
|
darwin.apple_sdk.frameworks.SystemConfiguration
|
2023-02-04 03:48:51 +00:00
|
|
|
];
|
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 ];
|
|
|
|
};
|
|
|
|
}
|