forked from mirrors/nixpkgs
wal-g: 0.1.2 -> 0.1.8pre240_966f3c5f4
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
f28bf68bc4
commit
d0945011ae
|
@ -1,11 +1,20 @@
|
||||||
{ stdenv, buildGoPackage, fetchurl }:
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||||
|
|
||||||
|
let
|
||||||
|
rev = "966f3c5f45ba18b2225c5b06918e41f56e223e73";
|
||||||
|
revCount = "240";
|
||||||
|
sha256 = "1m70a5rpycrfwrrc83745mamgpg54pc0n75qpzr9jbvicbp8g66p";
|
||||||
|
in
|
||||||
buildGoPackage rec {
|
buildGoPackage rec {
|
||||||
name = "wal-g-${version}";
|
name = "wal-g-${version}";
|
||||||
version = "0.1.2";
|
version = "0.1.8pre${revCount}_${builtins.substring 0 9 rev}";
|
||||||
src = fetchurl {
|
|
||||||
url = https://github.com/wal-g/wal-g/archive/v0.1.2.tar.gz;
|
src = fetchFromGitHub {
|
||||||
sha256 = "0zkjs72gq7sc9cqqzxr6ms1ibk8466zpwmrziq9p4jv9r4iq3bfb";
|
owner = "wal-g";
|
||||||
|
repo = "wal-g";
|
||||||
|
inherit rev sha256;
|
||||||
};
|
};
|
||||||
|
|
||||||
goPackagePath = "github.com/wal-g/wal-g";
|
goPackagePath = "github.com/wal-g/wal-g";
|
||||||
meta = {
|
meta = {
|
||||||
homepage = https://github.com/wal-g/wal-g;
|
homepage = https://github.com/wal-g/wal-g;
|
||||||
|
|
Loading…
Reference in a new issue