Files
schafkopf-logic/shell.nix
Valentin Heiserer 61f8ac1f56
Some checks failed
Release crate / Publish to crates.io and create GitHub Release (release) Failing after 1m46s
update readme and add action
2025-11-11 19:09:05 +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)
'';
}