nixpkgs/pkgs/tools/filesystems/convoy/default.nix

27 lines
667 B
Nix
Raw Normal View History

2016-11-30 22:28:18 +00:00
# This file was generated by go2nix.
{ lib, buildGoPackage, fetchFromGitHub, lvm2 }:
2016-11-30 22:28:18 +00:00
buildGoPackage rec {
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
};
buildInputs = [lvm2];
2016-11-30 22:28:18 +00:00
meta = with lib; {
homepage = "https://github.com/rancher/convoy";
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;
};
}