nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #234304 from wegank/fido2luks-refactor

fido2luks: migrate to bindgenHook

authored by

Pavol Rusnak and committed by
GitHub
e410f6d9 3eb0cc7c

+1 -8
+1 -8
pkgs/tools/security/fido2luks/default.nix
··· 3 3 , fetchFromGitHub 4 4 , cryptsetup 5 5 , pkg-config 6 - , clang 7 - , llvmPackages 8 - , fetchpatch 9 6 }: 10 7 11 8 rustPlatform.buildRustPackage rec { ··· 16 19 sha256 = "sha256-bXwaFiRHURvS5KtTqIj+3GlGNbEulDgMDP51ZiO1w9o="; 17 20 }; 18 21 19 - nativeBuildInputs = [ pkg-config clang ]; 22 + nativeBuildInputs = [ pkg-config rustPlatform.bindgenHook ]; 20 23 21 24 buildInputs = [ cryptsetup ]; 22 - 23 - configurePhase = '' 24 - export LIBCLANG_PATH="${llvmPackages.libclang.lib}/lib" 25 - ''; 26 25 27 26 cargoSha256 = "sha256-MPji87jYJjYtDAXO+v/Z4XRtCKo+ftsNvmlBrM9iMTk="; 28 27