All checks were successful
Release crate / Publish to crates.io and create GitHub Release (release) Successful in 1m36s
19 lines
314 B
Nix
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)
|
|
'';
|
|
}
|