Files
schafkopf-logic/shell.nix
Valentin Heiserer c8deb6f0e8
Some checks failed
CI / Build and test (ubuntu-latest) (push) Successful in 50s
CI / Build and test (ubuntu-latest) (pull_request) Successful in 40s
CI / Build and test (Windows) (pull_request) Failing after 4s
CI / Build and test (Windows) (push) Failing after 8s
update readme and add action
2025-11-12 01:11:16 +01:00

19 lines
314 B
Nix

let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
cargo
rustc
rustPackages.clippy
pkg-config
gnupg
pinentry
pinentry-curses
];
shellHook = ''
# Export GPG_TTY so pinentry-curses can attach to the current terminal
export GPG_TTY=$(tty)
'';
}