1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00
nixpkgs/pkgs/tools/security/fido2luks/default.nix

32 lines
754 B
Nix
Raw Normal View History

2019-12-01 11:57:05 +00:00
{ stdenv
, rustPlatform
, fetchFromGitHub
, cryptsetup
, pkg-config
}:
rustPlatform.buildRustPackage rec {
pname = "fido2luks";
2020-01-22 07:50:37 +00:00
version = "0.2.3";
2019-12-01 11:57:05 +00:00
src = fetchFromGitHub {
owner = "shimunn";
repo = pname;
rev = version;
2020-01-22 07:50:37 +00:00
sha256 = "0340xp7q6f0clb7wmqpgllllwsixmsy37k1f5kj3hwvb730rz93x";
2019-12-01 11:57:05 +00:00
};
buildInputs = [ cryptsetup ];
nativeBuildInputs = [ pkg-config ];
cargoSha256 = "0rp4f6xnwmvf3pv6h0qwsg01jrndf77yn67675ac39kxzmrzfy2f";
2019-12-01 11:57:05 +00:00
meta = with stdenv.lib; {
description = "Decrypt your LUKS partition using a FIDO2 compatible authenticator";
homepage = "https://github.com/shimunn/fido2luks";
license = licenses.gpl3;
maintainers = with maintainers; [ prusnak mmahut ];
platforms = platforms.linux;
};
}