Skip to content

Commit

Permalink
wal-g: init at 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ocharles committed Nov 17, 2017
1 parent 5af8c93 commit 5735aec
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions pkgs/tools/backup/wal-g/default.nix
@@ -0,0 +1,16 @@
{ stdenv, buildGoPackage, fetchurl }:
buildGoPackage rec {
name = "wal-g-${version}";
version = "0.1.2";
src = fetchurl {
url = https://github.com/wal-g/wal-g/archive/v0.1.2.tar.gz;
sha256 = "0zkjs72gq7sc9cqqzxr6ms1ibk8466zpwmrziq9p4jv9r4iq3bfb";
};
goPackagePath = "github.com/wal-g/wal-g";
meta = {
homepage = https://github.com/wal-g/wal-g;
license = stdenv.lib.asl20;
description = "An archival restoration tool for Postgres";
maintainers = [ stdenv.lib.maintainers.ocharles ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -19940,4 +19940,6 @@ with pkgs;
dnstracer = callPackage ../tools/networking/dnstracer {
inherit (darwin) libresolv;
};

wal-g = callPackage ../tools/backup/wal-g {};
}

1 comment on commit 5735aec

@grahamc
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Heya, heads up, this has broken evaluation on PRs: error: attribute ‘asl20’ missing, at /var/lib/gc-of-borg/.nix-test/mr-est-38dca4e3aa6bca43ea96d2fcc04e8229-31769/pkgs/tools/backup/wal-g/default.nix:12:15

Please sign in to comment.