nixpkgs/pkgs/tools/security/fido2luks/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
876 B
Nix
Raw Normal View History

{ lib
2019-12-01 11:57:05 +00:00
, rustPlatform
, fetchFromGitHub
, cryptsetup
, pkg-config
, clang
, llvmPackages
2022-09-08 09:29:47 +00:00
, fetchpatch
2019-12-01 11:57:05 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "fido2luks";
version = "0.2.21";
2019-12-01 11:57:05 +00:00
src = fetchFromGitHub {
owner = "shimunn";
repo = pname;
rev = version;
sha256 = "sha256-bXwaFiRHURvS5KtTqIj+3GlGNbEulDgMDP51ZiO1w9o=";
2019-12-01 11:57:05 +00:00
};
nativeBuildInputs = [ pkg-config clang ];
2022-09-08 09:29:47 +00:00
2019-12-01 11:57:05 +00:00
buildInputs = [ cryptsetup ];
configurePhase = ''
export LIBCLANG_PATH="${llvmPackages.libclang.lib}/lib"
'';
cargoSha256 = "sha256-MPji87jYJjYtDAXO+v/Z4XRtCKo+ftsNvmlBrM9iMTk=";
2019-12-01 11:57:05 +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";
license = licenses.mpl20;
2019-12-01 11:57:05 +00:00
maintainers = with maintainers; [ prusnak mmahut ];
platforms = platforms.linux;
};
}