zfsbackup-go: init at unstable-2019-03-05

This commit is contained in:
Konrad Borowski
2019-10-17 14:47:45 +02:00
parent 0256080d11
commit d54fda49eb
3 changed files with 300 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
# This file was generated by https://github.com/kamilchm/go2nix v1.3.0
{ stdenv, buildGoPackage, fetchgit }:
buildGoPackage rec {
pname = "zfsbackup";
version = "unstable-2019-03-05";
rev = "78fea6e99f0a5a4c8513d3a3d1d45fb6750cfddf";
goPackagePath = "github.com/someone1/zfsbackup-go";
src = fetchgit {
inherit rev;
url = "https://github.com/someone1/zfsbackup-go";
sha256 = "0yalsfvzmcnc8yfzm3r5dikqrp57spwa16l7gbzvgqqcz4vlnw3n";
};
goDeps = ./deps.nix;
meta = {
description = "Backup ZFS snapshots to cloud storage such as Google, Amazon, Azure, etc";
homepage = "https://github.com/someone1/zfsbackup-go";
license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.xfix ];
};
}