sequoia-chameleon-gnupg: init at 0.1.1
This commit is contained in:
parent
9269a0e153
commit
eb96c7ab43
33
pkgs/tools/security/sequoia-chameleon-gnupg/default.nix
Normal file
33
pkgs/tools/security/sequoia-chameleon-gnupg/default.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{ lib
|
||||||
|
, rustPlatform
|
||||||
|
, fetchFromGitLab
|
||||||
|
, pkg-config
|
||||||
|
, nettle
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "sequoia-chameleon-gnupg";
|
||||||
|
version = "0.1.1";
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
owner = "sequoia-pgp";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-liQNz833/3hi3eMi+/iEZ8fT9FFi+MrDIYbQD+dQ/p0=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "sha256-bnScLSI94obYQH5YzoHY4DtGScKc4m24+SIg1d2kAKw=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ rustPlatform.bindgenHook pkg-config ];
|
||||||
|
buildInputs = [ nettle ];
|
||||||
|
|
||||||
|
# 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -11548,6 +11548,8 @@ with pkgs;
|
|||||||
pythonPackages = python3Packages;
|
pythonPackages = python3Packages;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
sequoia-chameleon-gnupg = callPackage ../tools/security/sequoia-chameleon-gnupg { };
|
||||||
|
|
||||||
sewer = callPackage ../tools/admin/sewer { };
|
sewer = callPackage ../tools/admin/sewer { };
|
||||||
|
|
||||||
sfeed = callPackage ../tools/misc/sfeed { };
|
sfeed = callPackage ../tools/misc/sfeed { };
|
||||||
|
Loading…
Reference in New Issue
Block a user