2016-11-30 22:28:18 +00:00
|
|
|
# This file was generated by go2nix.
|
2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub, lvm2 }:
|
2016-11-30 22:28:18 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "convoy";
|
2020-06-14 12:24:47 +00:00
|
|
|
version = "0.5.2";
|
2016-11-30 22:28:18 +00:00
|
|
|
|
|
|
|
goPackagePath = "github.com/rancher/convoy";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
owner = "rancher";
|
|
|
|
repo = "convoy";
|
2020-06-14 12:24:47 +00:00
|
|
|
sha256 = "09nygrxd5hril4xcfsvgjg74xxhhimznqq4sdk0f360c5ra0dbhj";
|
2016-11-30 22:28:18 +00:00
|
|
|
};
|
|
|
|
|
2018-07-17 20:11:16 +00:00
|
|
|
buildInputs = [lvm2];
|
2016-11-30 22:28:18 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/rancher/convoy";
|
2020-10-11 05:55:05 +00:00
|
|
|
description = "A Docker volume plugin, managing persistent container volumes";
|
2016-11-30 22:28:18 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ offline ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|