update readme and add action
Some checks failed
Release crate / Publish to crates.io and create GitHub Release (release) Failing after 1m48s
Some checks failed
Release crate / Publish to crates.io and create GitHub Release (release) Failing after 1m48s
This commit is contained in:
18
shell.nix
Normal file
18
shell.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
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)
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user