pgbackrest 2.49 -> 2.50 https://repology.org/project/pgbackrest/versions attrpath: pgbackrest Checking auto update branch... No auto update branch exists Old version 2.49" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , pkg-config , postgresql , openssl , lz4 , bzip2 , libxml2 , zlib , zstd , libyaml }: stdenv.mkDerivation rec { pname = "pgbackrest"; version = "2.50"; src = fetchFromGitHub { owner = "pgbackrest"; repo = "pgbackrest"; rev = "release/${version}"; sha256 = "sha256-RjkTg80LAUndSVfTrol9hvgNOG6PMC+OkMVjdtjpdbI="; }; nativeBuildInputs = [ pkg-config ]; buildInputs = [ postgresql openssl lz4 bzip2 libxml2 zlib zstd libyaml ]; postUnpack = '' sourceRoot+=/src ''; meta = with lib; { description = "Reliable PostgreSQL backup & restore"; homepage = "https://pgbackrest.org/"; changelog = "https://github.com/pgbackrest/pgbackrest/releases"; license = licenses.mit; mainProgram = "pgbackrest"; maintainers = with maintainers; [ zaninime ]; }; }