Files
schafkopf-logic/shell.nix
Valentin Heiserer fd53e258e9
All checks were successful
Release crate / Publish to crates.io and create GitHub Release (release) Successful in 1m36s
update readme and add action
2025-11-11 19:41:25 +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)
'';
}