Unverified Commit 337e3533 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

mdbook-pagecrypt: init at 0.1.2 (#493544)

parents c0f3d81a 558fd9ef
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -12399,6 +12399,13 @@
    githubId = 2881268;
    name = "John Hollowell";
  };
  jhult = {
    email = "Jonathan@JonathanHult.com";
    github = "jhult";
    githubId = 9849069;
    name = "Jonathan Hult";
    keys = [ { fingerprint = "DEE7 054C 5D43 ABEA C0F9  8BE4 3512 C8F8 2E2F 2A16"; } ];
  };
  jiegec = {
    name = "Jiajie Chen";
    email = "c@jia.je";
+33 −0
Original line number Diff line number Diff line
{
  lib,
  rustPlatform,
  fetchFromGitHub,
  openssl,
  pkg-config,
}:

rustPlatform.buildRustPackage (finalAttrs: {
  pname = "mdbook-pagecrypt";
  version = "0.1.2";

  src = fetchFromGitHub {
    owner = "Wybxc";
    repo = "mdbook-pagecrypt";
    tag = "v${finalAttrs.version}";
    hash = "sha256-pwEiqLJM4EXqt32j5h7aaJdcdauRtkvxSSu1wbtWr5E=";
  };

  cargoHash = "sha256-muhLJfOh5riSuymmu1NSemM+c+7Y1Ya/YG9TjFQgPkk=";

  nativeBuildInputs = [ pkg-config ];

  buildInputs = [ openssl ];

  meta = {
    description = "Encrypt your mdBook-built site with password protection";
    mainProgram = "mdbook-pagecrypt";
    homepage = "https://github.com/Wybxc/mdbook-pagecrypt";
    license = lib.licenses.mpl20;
    maintainers = with lib.maintainers; [ jhult ];
  };
})