stoken 0.92 -> 0.93 https://repology.org/project/stoken/versions attrpath: stoken Checking auto update branch... No auto update branch exists Old version 0.92" not present in staging derivation file with contents: { lib , stdenv , fetchFromGitHub , autoreconfHook , pkg-config , libxml2 , nettle , withGTK3 ? true , gtk3 }: stdenv.mkDerivation rec { pname = "stoken"; version = "0.93"; src = fetchFromGitHub { owner = "cernekee"; repo = "stoken"; rev = "v${version}"; hash = "sha256-8N7TXdBu37eXWIKCBdaXVW0pvN094oRWrdlcy9raddI="; }; strictDeps = true; nativeBuildInputs = [ autoreconfHook pkg-config ]; buildInputs = [ libxml2 nettle ] ++ lib.optionals withGTK3 [ gtk3 ]; meta = with lib; { description = "Software Token for Linux/UNIX"; homepage = "https://github.com/cernekee/stoken"; license = licenses.lgpl21Plus; maintainers = [ ]; platforms = platforms.all; }; }