summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/filesystems/convoy
diff options
context:
space:
mode:
authorJaka Hudoklin <jakahudoklin@gmail.com>2016-11-30 23:28:18 +0100
committerJaka Hudoklin <jakahudoklin@gmail.com>2016-11-30 23:28:18 +0100
commit3675631f63901635d94aa6dab984d606653ec0ae (patch)
treef68f4b1bff139459e8f424ba705d4ca99e52eea5 /pkgs/tools/filesystems/convoy
parent076e3ae32cb40b590a50bffdcf1ee5da85bfabe9 (diff)
convoy: init at 0.5.0
Diffstat (limited to 'pkgs/tools/filesystems/convoy')
-rw-r--r--pkgs/tools/filesystems/convoy/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/convoy/default.nix b/pkgs/tools/filesystems/convoy/default.nix
new file mode 100644
index 000000000000..fe713556577d
--- /dev/null
+++ b/pkgs/tools/filesystems/convoy/default.nix
@@ -0,0 +1,26 @@
+# This file was generated by go2nix.
+{ stdenv, buildGoPackage, fetchFromGitHub, devicemapper }:
+
+buildGoPackage rec {
+ name = "convoy-${version}";
+ version = "0.5.0";
+
+ goPackagePath = "github.com/rancher/convoy";
+
+ src = fetchFromGitHub {
+ rev = "v${version}";
+ owner = "rancher";
+ repo = "convoy";
+ sha256 = "0ihy0cfq7sa2wml904ajwr165hx2mas3jb1bqk3i0m4fg1lx1xw1";
+ };
+
+ buildInputs = [devicemapper];
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/rancher/convoy;
+ description = "A Docker volume plugin, managing persistent container volumes.";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ offline ];
+ platforms = platforms.linux;
+ };
+}