gpg-tui 0.9.1 -> 0.9.3 https://repology.org/meeases attrpath: gpg-tui Checking auto update branch... No auto update branch exists Old version 0.9.1" not present in master derivation file with contents: { lib , stdenv , rustPlatform , fetchFromGitHub , gpgme , libgpg-error , libxcb , libxkbcommon , pkg-config , python3 , AppKit , Foundation , libiconv , libobjc , libresolv }: rustPlatform.buildRustPackage rec { pname = "gpg-tui"; version = "0.9.3"; src = fetchFromGitHub { owner = "orhun"; repo = "gpg-tui"; rev = "v${version}"; hash = "sha256-4Xi4ePFJL56HxCkbTlu4WiCTRzLEqvfbEk/2q9QjAd8="; }; cargoHash = "sha256-MEj7c87msMv/+D70EDWmWEHTtmQcx5DEMf2I/AXnwm8="; nativeBuildInputs = [ gpgme # for gpgme-config libgpg-error # for gpg-error-config pkg-config python3 ]; buildInputs = [ gpgme libgpg-error libxcb libxkbcommon ] ++ lib.optionals stdenv.isDarwin [ AppKit Foundation libiconv libobjc libresolv ]; meta = with lib; { description = "Terminal user interface for GnuPG"; homepage = "https://github.com/orhun/gpg-tui"; changelog = "https://github.com/orhun/gpg-tui/blob/${src.rev}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ dotlambda ]; }; }