fa2021c7b6
+ fix license
40 lines
876 B
Nix
40 lines
876 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, cryptsetup
|
|
, pkg-config
|
|
, clang
|
|
, llvmPackages
|
|
, fetchpatch
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "fido2luks";
|
|
version = "0.2.21";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "shimunn";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-bXwaFiRHURvS5KtTqIj+3GlGNbEulDgMDP51ZiO1w9o=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config clang ];
|
|
|
|
buildInputs = [ cryptsetup ];
|
|
|
|
configurePhase = ''
|
|
export LIBCLANG_PATH="${llvmPackages.libclang.lib}/lib"
|
|
'';
|
|
|
|
cargoSha256 = "sha256-MPji87jYJjYtDAXO+v/Z4XRtCKo+ftsNvmlBrM9iMTk=";
|
|
|
|
meta = with lib; {
|
|
description = "Decrypt your LUKS partition using a FIDO2 compatible authenticator";
|
|
homepage = "https://github.com/shimunn/fido2luks";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ prusnak mmahut ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|