2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2019-12-01 11:57:05 +00:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cryptsetup
|
|
|
|
, pkg-config
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "fido2luks";
|
2022-10-12 09:05:36 +00:00
|
|
|
version = "0.2.21";
|
2019-12-01 11:57:05 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "shimunn";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-10-12 09:05:36 +00:00
|
|
|
sha256 = "sha256-bXwaFiRHURvS5KtTqIj+3GlGNbEulDgMDP51ZiO1w9o=";
|
2019-12-01 11:57:05 +00:00
|
|
|
};
|
|
|
|
|
2023-05-26 21:31:52 +00:00
|
|
|
nativeBuildInputs = [ pkg-config rustPlatform.bindgenHook ];
|
2022-09-08 09:29:47 +00:00
|
|
|
|
2019-12-01 11:57:05 +00:00
|
|
|
buildInputs = [ cryptsetup ];
|
|
|
|
|
2022-10-12 09:05:36 +00:00
|
|
|
cargoSha256 = "sha256-MPji87jYJjYtDAXO+v/Z4XRtCKo+ftsNvmlBrM9iMTk=";
|
2019-12-01 11:57:05 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-12-01 11:57:05 +00:00
|
|
|
description = "Decrypt your LUKS partition using a FIDO2 compatible authenticator";
|
|
|
|
homepage = "https://github.com/shimunn/fido2luks";
|
2022-10-12 09:05:36 +00:00
|
|
|
license = licenses.mpl20;
|
2019-12-01 11:57:05 +00:00
|
|
|
maintainers = with maintainers; [ prusnak mmahut ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|