Skip to content

Commit

Permalink
sequoia: 0.10.0 -> 0.11.0
Browse files Browse the repository at this point in the history
- Tests succeed, so the package is no longer marked as "broken"
- Python bindings disabled to reduce build time to within Nix CI limits
  • Loading branch information
curiousleo committed Nov 10, 2019
1 parent 1782f6c commit 7513534
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions pkgs/tools/security/sequoia/default.nix
Expand Up @@ -2,23 +2,23 @@
, git, nettle, llvmPackages, cargo, rustc
, rustPlatform, pkgconfig, glib
, openssl, sqlite, capnproto
, ensureNewerSourcesForZipFilesHook, pythonSupport ? true, pythonPackages ? null
, ensureNewerSourcesForZipFilesHook, pythonSupport ? false, pythonPackages ? null
}:

assert pythonSupport -> pythonPackages != null;

rustPlatform.buildRustPackage rec {
pname = "sequoia";
version = "0.10.0";
version = "0.11.0";

src = fetchFromGitLab {
owner = "sequoia-pgp";
repo = pname;
rev = "v${version}";
sha256 = "0gvczghyik56jlnb8cz7jg2l3nbm519gf19g7l5blxci3009v23d";
sha256 = "1k0pr3vn77fpfzyvbg7xb4jwm6srsiws9bsd8q7i3hl6j56a880i";
};

cargoSha256 = "0dk9sjcbmygbdpwqnah5krli1p9j5hahgiqrca9c0kfpfiwgx62q";
cargoSha256 = "15bhg7b88rq8p0bn6y5wwv2l42kqb1qyx2s3kw0r0v0wadf823q3";

nativeBuildInputs = [
pkgconfig
Expand Down Expand Up @@ -87,6 +87,5 @@ rustPlatform.buildRustPackage rec {
license = licenses.gpl3;
maintainers = with maintainers; [ minijackson doronbehar ];
platforms = platforms.all;
broken = true;
};
}

0 comments on commit 7513534

Please sign in to comment.