2022-12-15T14:59:07 bupstash 0.11.0 -> 0.12.0 https://github.com/andrewchambers/bupstash/releases 2022-12-15T14:59:09 attrpath: bupstash 2022-12-15T14:59:09 Checking auto update branch... 2022-12-15T14:59:09 No auto update branch exists 2022-12-15T14:59:10 Old version 0.11.0" not present in master derivation file with contents: { stdenv, lib, fetchFromGitHub, installShellFiles, rustPlatform, ronn, pkg-config, libsodium }: rustPlatform.buildRustPackage rec { pname = "bupstash"; version = "0.12.0"; src = fetchFromGitHub { owner = "andrewchambers"; repo = pname; rev = "v${version}"; sha256 = "sha256-Ekjxna3u+71s1q7jjXp7PxYUQIfbp2E+jAqKGuszU6g="; }; cargoSha256 = "sha256-hkGmE7WseEjMxmmPyR8C4osbdbpIt8qG9sfVGuC4d84="; nativeBuildInputs = [ ronn pkg-config installShellFiles ]; buildInputs = [ libsodium ]; postBuild = '' RUBYOPT="-KU -E utf-8:utf-8" ronn -r doc/man/*.md ''; postInstall = '' installManPage doc/man/*.[1-9] ''; meta = with lib; { description = "Easy and efficient encrypted backups"; homepage = "https://bupstash.io"; license = licenses.mit; platforms = platforms.unix; # = note: Undefined symbols for architecture x86_64: # "_utimensat", referenced from: # https://github.com/NixOS/nixpkgs/issues/101229 broken = (stdenv.isDarwin && stdenv.isx86_64); maintainers = with maintainers; [ andrewchambers ]; }; }