Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 79954bdc0938
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: debeb8781ce4
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Aug 15, 2020

  1. wal-g: 0.2.15 -> 0.2.17

    marsam authored and Jon committed Aug 15, 2020
    Copy the full SHA
    66b8e7d View commit details
  2. wal-g: add marsam to maintainers

    marsam authored and Jon committed Aug 15, 2020
    Copy the full SHA
    debeb87 View commit details
Showing with 7 additions and 7 deletions.
  1. +7 −7 pkgs/tools/backup/wal-g/default.nix
14 changes: 7 additions & 7 deletions pkgs/tools/backup/wal-g/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{ stdenv, buildGoModule, fetchFromGitHub, brotli }:
{ lib, buildGoModule, fetchFromGitHub, brotli }:

buildGoModule rec {
pname = "wal-g";
version = "0.2.15";
version = "0.2.17";

src = fetchFromGitHub {
owner = "wal-g";
repo = "wal-g";
rev = "v${version}";
sha256 = "1hslhs9i4wib6c74gdq9yail958ff1y11pymjww2xr84wkwd9v7i";
sha256 = "0r6vy2b3xqwa22286srwngk63sq4aza6aj7brwc130vypcps7svp";
};

vendorSha256 = "0jjr33k27k6h27sa01ipz0aydch3i9klknqb3yq8f048zkb54gv8";
vendorSha256 = "0r73l4kxzldca1vg5mshq6iqsxcrndcbmbp3d7i9pxyb2kig8gv5";

buildInputs = [ brotli ];

@@ -23,10 +23,10 @@ buildGoModule rec {
mv $out/bin/pg $out/bin/wal-g
'';

meta = {
meta = with lib; {
homepage = "https://github.com/wal-g/wal-g";
license = stdenv.lib.licenses.asl20;
license = licenses.asl20;
description = "An archival restoration tool for PostgreSQL";
maintainers = [ stdenv.lib.maintainers.ocharles ];
maintainers = with maintainers; [ ocharles marsam ];
};
}