zfsbackup: apply code review suggestions

This commit is contained in:
Konrad Borowski
2019-10-24 23:21:33 +02:00
committed by GitHub
parent d54fda49eb
commit 433bcdd3c3

View File

@@ -1,5 +1,5 @@
# This file was generated by https://github.com/kamilchm/go2nix v1.3.0
{ stdenv, buildGoPackage, fetchgit }:
{ lib, buildGoPackage, fetchgit }:
buildGoPackage rec {
pname = "zfsbackup";
@@ -16,10 +16,10 @@ buildGoPackage rec {
goDeps = ./deps.nix;
meta = {
meta = with lib; {
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 ];
license = licenses.mit;
maintainers = [ maintainers.xfix ];
};
}