Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: simplify build / reproducable builds using nix flake #271

Draft
wants to merge 6 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
python deps
  • Loading branch information
HannesGitH committed Apr 16, 2024
commit aac0d11c9e868150cc195c2f2332d37231f3dfc2
10 changes: 8 additions & 2 deletions virtualsmartcard/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,17 @@
name = "vicc";
src = self;
buildInputs = with pkgs; [

pcsclite
];
propagatedBuildInputs = with pkgs; [
(python3.withPackages (ps: with ps; [ pyscard ]))
(python3.withPackages (ps: with ps; [
pyscard
pillow
readline
pbkdf2
pycryptodome
]))
qrencode
];
nativeBuildInputs = with pkgs; [
autoconf
Expand Down
2 changes: 1 addition & 1 deletion virtualsmartcard/result