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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
# This file was generated by https://github.com/kamilchm/go2nix v1.3.0 # This file was generated by https://github.com/kamilchm/go2nix v1.3.0
{ stdenv, buildGoPackage, fetchgit }: { lib, buildGoPackage, fetchgit }:
buildGoPackage rec { buildGoPackage rec {
pname = "zfsbackup"; pname = "zfsbackup";
@ -16,10 +16,10 @@ buildGoPackage rec {
goDeps = ./deps.nix; goDeps = ./deps.nix;
meta = { meta = with lib; {
description = "Backup ZFS snapshots to cloud storage such as Google, Amazon, Azure, etc"; description = "Backup ZFS snapshots to cloud storage such as Google, Amazon, Azure, etc";
homepage = "https://github.com/someone1/zfsbackup-go"; homepage = "https://github.com/someone1/zfsbackup-go";
license = stdenv.lib.licenses.mit; license = licenses.mit;
maintainers = [ stdenv.lib.maintainers.xfix ]; maintainers = [ maintainers.xfix ];
}; };
} }