Add a basic nix shell derivation.

This commit is contained in:
louib 2022-07-30 22:15:31 -04:00
parent d181f80c8c
commit db65ab4c23

12
shell.nix Normal file
View File

@ -0,0 +1,12 @@
with (import <nixpkgs> {});
mkShell {
buildInputs = [
cmake
readline
openssl
# botan
qrencode
pcsclite
libusb
];
}